Where is list of validators in Zend ? Here rather not:
http://framework.zend.com/manual/en/zend.form.elements.html#zend.form.elements.validators
In Symfony Framework I have in documentation list of all validator:
http://www.symfony-project.org/api/1_2/validator


I need integer validator and number validator because I have these fields in
form:
$this->addElement('text', 'price', array(
            'label'      => 'Price:',
            'required'   => true,
            'filters'    => array('StringTrim')            
        ));
                
                $this->addElement('text', 'pages', array(
            'label'      => 'Number of pages:',
            'required'   => true,
            'filters'    => array('StringTrim')            
        ));

And I can't find that in documentation.
-- 
View this message in context: 
http://www.nabble.com/list-of-validators-in-Zend-like-in-Symfony-Framework-tp25521064p25521064.html
Sent from the Zend Framework mailing list archive at Nabble.com.

Reply via email to