How to merge configurable list fields to one field?

  • Linkmeinguides
    Asked on December 29, 2016 at 11:37 PM

    I find Configurable list very useful and meet my requirement. However, when I integrated my form with GGSheet, the answer in Configurable list in GGsheet includes the title of the fields. For example: Street Name: 1A, Name + Street/Road/Lane/Avenue: King Avenue. while I want the answer should be: 1A, King Avenue.

    How can I do to delete the field titles in Configurable List? If I need to use CSS code, can you help me build that code bacause I don't know anything about CSS code.

    Thank you very much.

  • Kiran Support Team Lead
    Replied on December 30, 2016 at 4:09 AM

    I have checked your JotForm and see that two configurable lists are used on your form.

    How to merge configurable list fields to one field? Image 1 Screenshot 60

    Do you mean to add the fields of each configurable list separately? If so, you may consider adding a new text field and a condition to copy the configurable list value to the text field.

    How to merge configurable list fields to one field? Image 2 Screenshot 71

    Please the screencast below to see how the condition works on the form.

    How to merge configurable list fields to one field? Image 3 Screenshot 82

    You can use the newly added text field for your requirement. 

    How can I do to delete the field titles in Configurable List?

    If you do not want to display the field titles in the configurable list widget, you may inject the following CSS code to the Custom CSS section of the widget.

    th {

    display: none;

    }

    How to merge configurable list fields to one field? Image 4 Screenshot 93

    After injecting this code, the configurable should be displaying as shown below:

    How to merge configurable list fields to one field? Image 5 Screenshot 104

    Hope this information helps!