Tag Archives: form

Symfony Form: unsetAllFieldsExcept()

When creating forms in symfony which extends from a Base (ORM) class, you sometimes do not need all fields that Propel/Doctrine generates for you. If you want to remove them you have several ways to do so. 1. Unset the … Continue reading

Posted in General, php, Symfony | Tagged , , | 5 Comments

sfWidgetFormInputCheckbox unchecked bug

Ever tried to create a Symfony form with a check box input field, which by default should be unchecked ? No ? Well read on because it’s not that easy . This would be the code to print a check … Continue reading

Posted in General, php, Symfony | Tagged , , , | 13 Comments

Symfony Forms Framework: Merge 2 forms

Recently I had to create a form to create/update users in our system. Some time ago we decided to save are users in 2 tables. The first table would contain all login information and the second his personal information. This … Continue reading

Posted in Framework, Languages, php, Symfony | Tagged , , , | 33 Comments

Symfony Forms Framework: Change validators at runtime.

Let’s say you have to make a user form with password fields. When you create the user you want the password fields to be required, but on an update the password fields should be optional because you don’t want the … Continue reading

Posted in Framework, php, Symfony | Tagged , , | 1 Comment

basic tips and tricks: 3.Forgotten form attributes

A lot of people create easy forms but don’t think it trough before designing the page. I listed 5 useful attributes/elements a lot of people intend to forget or simply don’t know why they are using it. Use get or … Continue reading

Posted in css, html, Tips and Tricks | Tagged , , | Leave a comment

3 tips when using jQuery

AjaxForm or ajaxSubmit This plug-in provides numerous options you can call to manage your form before and after submission and all this in AJAX. More info on http://malsup.com/jquery/form/ Live Query When an element is loaded into a page, you will … Continue reading

Posted in Javascript, Jquery | Tagged , , , , , , | Leave a comment