How to display zend_form_element_radio on one line ?
Answer / Ruchi Gupta
To display Zend_Form_Element_Radio on one line, set the decorator options accordingly:
```php
$radio = new Zend_Form_Element_Radio('fieldname');
$radio->setDecorators(array(
'ViewHelper',
array('HtmlTag', array('tag' => 'div')),
));
```
| Is This Answer Correct ? | 0 Yes | 0 No |
What is the difference between zend_auth and zend_acl?
How you can set module name, controller name, and action name in zend framework?
What is the difference between redirect and forward in zend framework?
How can I detect if an optional file has been uploaded?
What is the procedure to see that the optional file is detected?
Grouping where clauses with zend_db_table_abstract ?
What are the ways in which the file can be detected as being uploaded or not?
What is zendauthentication?
How to install zend framework2 on shared hosting server?
What is service manager in zend framework?
What should I know about the zend framework cla before submitting it?
In which file we can configuration in zend framework?