Can I add a drop down selection to a column of a matrix table?

  • RuthFisher
    Asked on April 21, 2015 at 11:49 AM

    Can I add a drop down selection to a column of a matrix table? Each tab down one column needs to have a drop down column. Thanks!

  • Carina
    Replied on April 21, 2015 at 1:20 PM

    Only if you edit the source code of the form:

    Can I add a drop down selection to a column of a matrix table?  Image 1 Screenshot 20

    You can replace the last column cells with this code:

     <td align="center" class="form-matrix-values">

                    <select id="input_1_0_0" class="form-dropdown" name="q1_clickTo[0][]">

                      <option>  </option>

                      <option value="Yes"> Yes </option>

                      <option value="No"> No </option>

                    </select>

                  </td>

    In blue are the options which you can edit.

    You can test it here:

    https://shots.jotform.com/carina/HTML/matrix_dropdown.html 

    Let us know if we can assist you further.