Possible to add javascript to Zend_Form_Element_Radio?
- by Stepppo
Ultimately, I'd like my Zend Form to render this HTML:
<p>Do you have any documents to upload?</p>
<p>Yes <input type="radio" value="Yes" name="uploadChoice" onClick="showTable()"> No <input type="radio" value="No" name="uploadChoice" onClick="hideTable()" checked></p>
Here's what I have in…