Panels In place editing Responsive layout builder NoSQL MongoDB Other Symfony2 Redis queue NodeJS integration
Panels In place editing Responsive layout builder NoSQL MongoDB Other Symfony2 Redis queue NodeJS integration
Instead of using buggy 3rd party JS selector libraries I’ve decided use the following workaround (implemented in jQuery): $(function() { $(“#content .innerContent:last-child”).addClass(“lastChild”); }); Now you can reach from CSS using the lastChild class.
I have decided to do some project with MongoDB, NodeJS and HTML5. It will be a very interesting entertainment based startup. I would like to share my personal readings. Here comes: HTML5 interactive demos http://html5demos.com/ HTML5 data-* http://ejohn.org/blog/html-5-data-attributes/ HTML5 reading…
Form saving in controller example: public function saveAction(Request $request) { if ($request->getMethod() == ‘POST’) { // EntityManager $em = $this->getDoctrine()->getEntityManager(); // New entity $registration = new Customer(); // Build the form $form = $this->createFormBuilder() ->add(‘name’, ‘text’) ->add(‘country’, ‘text’) ->add(‘email’, ‘email’)…
A good review about the coming features in PHP 5.4. I welcome the array dereferencing support and the closure’s $this; support!
A couple of days ago I run into a problem with integrating swfuploader to Symfony2. (I decided not to use SonataMediaBunde and write my own image uploader to SonataAdmin). First of all I try to explain my first problem that…