PLEASE NOTE: These forums are no longer utilized and are provided as an archive for informational purposes only. All support issues will be handled via email using our support ticket system. For more detailed information on this change, please see this blog post.

Change name attribute

  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' />

    Posted 13 years ago on Thursday August 26, 2010 | Permalink
  2. 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.

    Posted 13 years ago on Thursday August 26, 2010 | Permalink
  3. 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.
    :-)

    Posted 13 years ago on Thursday August 26, 2010 | Permalink