Zend Framework, Zend_Form_Element how to set custom name?
- by ikso
Hello, I have form, where some fields are looks like rows, so I can add/delete them using JS.
For example:
Field with ID=1 (existing row)
<input id="id[1]" type="text" name="id[1]" value="1" />
<input id="name[1]" type="text" name="name[1]" value="100" />
Field with ID=2 (existing row)
<input id="name[2]" type="text"…