How to set 'selected' value in select box dropdown list?
Answer / Ankush Soni
To set the 'selected' value in a select box dropdown list, use the addMultiOption() method provided by Zend_Form_Element_Select:
```php
$select = new Zend_Form_Element_Select('fieldname');
$select->addMultiOption('option1', 'Option 1')->setValue('option1');
```
| Is This Answer Correct ? | 0 Yes | 0 No |
How to call two different views from same action?
How to check whether form posted or not in zend framework?
How to write a program that performs the calculations using the sql function?
What are the advantages of zend framework 3? Explain
How to use jquery to post data in zend framework?
How to create object of model?
What is zendauthentication?
What is being presented by the decorators?
Why does the zend framework project have a cla at all?
how do you protect your site from sql injection in zend when using select query?
How to print exact sql query in zend framework ?
Explain the use of bootstrap used in zend framework?