Change Input Type while keeping conditions and formatting

  • yourmagicalvacation
    Asked on October 13, 2014 at 9:10 AM

    I want to change a field fro radio buttons to check boxes without loosing all the conditions and formatting

  • KadeJM
    Replied on October 13, 2014 at 10:56 AM

    The easiest way to switch out the field type without changing anything on your form would be to edit the input field type in your jotform's source code.

    However, if you do this then you must embed the entire jotform source code onto your webpage instead to keep it that way.

     

    EXAMPLE

    Change This:

    <input type="radio" class="form-radio" id="input_1_0" name="q1_pickAn" value="Option 1">

    To This:

    <input type="checkbox" class="form-radio" id="input_1_0" name="q1_pickAn" value="Option 1">