How can we add titles to key-in fields once user has clicked add button

  • ghgsummit
    Asked on June 14, 2016 at 1:36 PM

    Everything except the titles is copying over from the original code for the widget. 

    Jotform Thread 860495 Screenshot
  • Elton Support Team Lead
    Replied on June 14, 2016 at 3:30 PM

    You mean to say you want to copy the field labels too when a new set of fields is created on config list widget?

    Example:

    How can we add titles to key in fields once user has clicked add button Image 1 Screenshot 40

    If this is what you want, this is possible with CSS codes.

    Inject this CSS codes on each of the config list widget (since they all have the same labels). Paste it under the CSS tab.

    th{display:none;}

    td[class*="col"]:before {font-weight:bold;display:block;}

    td.col1:before {content: "Client";}

    td.col2:before {content: "Brand";}

    td.col3:before {content: "Indication(s)";}

    td.col4:before {content: "Duration";}

    td.col5:before {content: "Role";}

    td.col6:before {content: "Type of Work";}

    td.col7:before {content: "Phase(s)";}

    td.col8:before {content: "Audience";}

    td.col9:before {content: "US or Global";}

    Example:

    How can we add titles to key in fields once user has clicked add button Image 2 Screenshot 51

     

    Result:

    How can we add titles to key in fields once user has clicked add button Image 3 Screenshot 62

     

    Hope this helps!