hmm i just wrote a custom validator ...
followng
file:///D:/_FRAMEWORKS_/_ZF_TRUNK/documentation/manual/en/html/zend.validate.writing_validators.html
but even if i do just
const ERROR = 'error';
protected $_messageTemplates = array(
self::ERROR => "%value% must be less than what has been issued"
);
public function isValid($value, $context = null) {
$this->_error(self::ERROR);
return false;
}
it does not show any error messages?
--
View this message in context:
http://www.nabble.com/Custom-Validators-tp23354806p23354806.html
Sent from the Zend Framework mailing list archive at Nabble.com.