I must use two validator for one fields:
$this->setValidator('number', new sfValidatorDoctrineUnique(
array('model' => 'Data', 'column' => 'number') )
);
$this->setValidator('number', new sfValidatorString(array('required' => true)));
now working only secons validators. how can i compare this?
You can use: