How to display zend_form_element_radio on one line ?
Answer Posted / 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 |
Post New Answer View All Answers