[symfony-users] Re: sfWidgetFormInputHidden

2010-03-29 Thread Cristian N.
Are you using a validator for it inside the form? (e.g. sfValidatorPass) -- If you want to report a vulnerability issue on symfony, please send it to security at symfony-project.com You received this message because you are subscribed to the Google Groups symfony users group. To post to this

[symfony-users] Re: sfWidgetFormSelectMany doesn't post at form submission

2010-01-28 Thread Cristian N.
Found it. The problem was that select multiple is sent only with *selected* values. So, before submitting the form, I must select all elements for it (done using jquery and form.submit event). So embarrasing :) -- You received this message because you are subscribed to the Google Groups

[symfony-users] Re: sfValidatorDate in sf1.3/14 ?

2010-01-23 Thread Cristian N.
To convert a date you can use sfDateFormat (instead of doing the transformation in validator - inconsistent due to none association between regex and date fields - Alex pointed it correctly). something as: $df = new sfDateFormat(); $retDate = $df-format($data_op_tted, $pattern = 'i',