$required = new Zend_Validate_NotEmpty ();
$required->setType ($required->getType() | Zend_Validate_NotEmpty::INTEGER | Zend_Validate_NotEmpty::ZERO);
$country = $this->createElement('select','country');
$country->setLabel('Country')
->addValidator($required);
$country->setErrorMessages(array(
'isEmpty'=>'You should must select your country.'
));
$country->addMultioptions(array(
'0'=>'select',
'india' => 'India',
'sri lanka' => 'Sri Lanka',
'usa' => 'USA',
'pakistan' => 'Pakistan'
));
$required->setType ($required->getType() | Zend_Validate_NotEmpty::INTEGER | Zend_Validate_NotEmpty::ZERO);
$country = $this->createElement('select','country');
$country->setLabel('Country')
->addValidator($required);
$country->setErrorMessages(array(
'isEmpty'=>'You should must select your country.'
));
$country->addMultioptions(array(
'0'=>'select',
'india' => 'India',
'sri lanka' => 'Sri Lanka',
'usa' => 'USA',
'pakistan' => 'Pakistan'
));
No comments:
Post a Comment