symfony-forms

sfValidatorChoice not working on multiple selection element

sfValidatorChoice is not working on multiple select element, my code $this->form=new MyTestForm(); $options_array=array("php","python","java"); $widgetSchema["my_select"] =new sfWidgetFormChoice(array('choices' => $options_array,'multiple' => true,'expanded' => true )); $validatorSchema["my_select"] = new sfValidatorCh...

Translation Table Delete Issue

Hello Friends, I'm using Symfony 1.4. My project is multi langual. So i'm using translation table. So from database i'm creating schema, them model , then form. Each time i have Delete Translation class from model doctrine. I don't want to do that each time. Can anybody have solution for this ? ...

Dynamic form fields in symfony 1.4

Hi there, I'm working on an e-commerce project and I got stuck at the cart update. Here I have to present a form using the contents of the current cart, with input fields containing the current quantities. I checked the documentation and the forums, but I didn't find anything useful. The problem is that i cannot declare the exact form ...