HI.
Is it not possible to write your own name attributes?
Ex:
<input name='input_1' type='radio' value='1' id='choice_1_0' tabindex='1' />
change to:
<input name='a_different_name' type='radio' value='1' id='choice_1_0' tabindex='1' />
HI.
Is it not possible to write your own name attributes?
Ex:
<input name='input_1' type='radio' value='1' id='choice_1_0' tabindex='1' />
change to:
<input name='a_different_name' type='radio' value='1' id='choice_1_0' tabindex='1' />
No, you can't change the HTML markup or the form will not work. It's a dynamic form, the form processor doesn't process static forms and needs the name and id's exactly as they are so functionality such as conditional logic, etc. works properly. So you can't adjust any of the markup or else you will run into problems.
Okay, thanks Carl!
It would be a nice feature to have in the admin, just like ist possible to set the label and the value.
:-)