Is there a way of splitting radio buttons on a page using the Zend_Form
component? I think that something along the lines of each option having its
own decorators would solve the problem but I can't see a way of doing this.

The effect I want is to be able to have each option in its own div element
with each div containing other information about the option. For example:

<div>
   <label><option type="radio" name="test" value="1" />1</label>
   <p>Other information</p>
</div>
<div>
   <label><option type="radio" name="test" value="2" />2</label>
   <p>Other information</p>
</div>
<div>
   <label><option type="radio" name="test" value="2" />2</label>
   <p>Other information</p>
</div>

Thanks for your help!
   
-- 
View this message in context: 
http://www.nabble.com/Splitting-radio-button-options-tp16627269p16627269.html
Sent from the Zend Framework mailing list archive at Nabble.com.

Reply via email to