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 wrote:
> The answer is easy. It needs to be required first. If it is over
> max_length it just ignores it because its not re
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,
'requi