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...
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 ?
...
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 ...