Top "Zend-form" questions

`Zend\Form` is a class provided by the Zend Framework, an open source PHP 5 object oriented framework.

how to set readonly property in zend form add element

Hi I am new in zend framework. I want to set ready only property on input box in zend Form. …

zend-framework zend-form
Zend Form: Checkbox element displays as hidden field?

I would like to add a simple check box to my form: $element = new Zend_Form_Element_Checkbox('dont'); $element-&…

zend-framework checkbox zend-form zend-form-element
Zend Form, table decorators

I am having an incredibly difficult time to decorate a Zend form the way I need to. This is the …

zend-framework zend-form zend-decorators
Zend Framework: Populating DB data to a Zend Form dropdown element

I have the following form: <?php class Application_Form_RegistrationForm extends Zend_Form{ public function init(){ $country = $this->…

database zend-framework zend-form populate
Zend_Form: how to check 2 fields are identical

I have created a form to add a user to a database and make user available for login. Now I …

php validation zend-framework zend-form
Password Confirmation in zend framework

I add this class to library/My/Validate/PasswordConfirmation.php <?php require_once 'Zend/Validate/Abstract.php'; class My_…

zend-framework passwords zend-form
MultiSelect in Zend Framework 2

There was a Zend_Form_Element_Multiselect in Zend Framework 1.12. How to achieve the same result in Zend Framework 2.0 ? I …

php zend-form zend-framework2 multi-select
Setting default selected option for Zend_Form_Element_Select

Possible Duplicate: Zend Framework - Set 'selected' value in select box dropdown list I have a Zend_Form with Zend_…

php zend-framework zend-form zend-form-element
How to add a radio button to a form with Zend Framework?

the issue is not so much as adding a radio button form element but how to i match it in …

forms zend-framework zend-form
Zend_Form - Array based elements?

Using Zend_Form, how would I create form elements like this: <input type="text" name="element[1]" value="" /> <…

php zend-framework zend-form