Saturday, 9 November 2013

How to create password box element in Zend Framework?

 $password = new Zend_Form_Element_Password('password');
$password->setLabel('Password:')
            ->addValidator('StringLength', false, array(1,24))
            ->setLabel('Choose your password:')
            ->setRequired(true);

No comments:

How calulation total value for HTML input text?

<script> $j(document).ready(function(){ $j(":text").keyup(function(){ if (isNaN($j(this).val())) { alert(...