Trivial, but I swear I cannot find the information anywhere.
<?php $username = $this->form->username ?>
<?php echo $username->renderViewHelper() ?>
What does renderViewHelper() do here?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
at times, you may want to use Zend_Form with the existing markup in the view, for example consider the below markup that is to be found in view file.
the below syntax
will fetch only the label tag. no fancy wrapper tags or anything. the same goes to
this will only fetch the input (or whatever specified) element tag. so that you can embed the form with your own existing markup instead of allowing
zend_formto create markup by itself.check this link for more information http://framework.zend.com/manual/en/learning.form.decorators.individual.html
hope this helps you.