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 function of action helper in zend?
Tell me what are the ways in which the file can be detected as being uploaded or not?
Does zend framework support php 4?
How to include css in zend framework?
How to get all post data?
Which class extend the zend controller? Zend_controller_action
What is being presented by the decorators?
Do you know what is the use of zend framework?
How we can do multiple column ordering in zend framework?
How can I customize the appearance of forms generated by zend_form?
How we can check post method in zend framework?
How to access route, post, get etc. Parameters in zend framework 2?