Re: [symfony-users] Widgets and Validators

2010-04-14 Thread DEEPAK BHATIA
Hi, We have set the 'required' = true but still the max_length attribute is not set for LoginId. Regards Deepak Bhatia On Tue, Apr 13, 2010 at 3:07 PM, Gareth McCumskey gmccums...@gmail.comwrote: The answer is easy. It needs to be required first. If it is over max_length it just ignores it

Re: [symfony-users] Widgets and Validators

2010-04-13 Thread Gareth McCumskey
The answer is easy. It needs to be required first. If it is over max_length it just ignores it because its not required, so just add a 'required'=true to the validator array $this-setValidators(array( 'LoginId' = new sfValidatorString(array( 'max_length' = 6,

[symfony-users] Widgets and Validators

2010-04-12 Thread DEEPAK BHATIA
Hi, I have created a form using the below widget and validator. I am not able to validate the maximum length of the input text type. The example shows to bind the form first and then do validation. Please me in resolving the same. Thanks Deepak ?php class LoginForm extends sfForm { public