Configurable List not working/retaining old code

  • valerie.skillern
    Asked on June 21, 2021 at 3:29 PM

    I'm trying to edit a configurable list, but each time I try to delete the old data and add new data, the old info remains.

  • Vanessa_T
    Replied on June 21, 2021 at 11:04 PM

    Just to confirm, are you editing the submitted data or editing the configurable list widget itself?

    I checked the widget and I can see that the fields displayed are just the same fields you have set up from within the widget's settings panel.

    1624330983 60d152e7d2ac4 04501 Screenshot 10

    Kindly share a screencast when editing/deleting/adding data so we can be on the same page and see exactly what you are referring to.

  • valerie.skillern
    Replied on June 22, 2021 at 10:32 AM

    Hi Vanessa,

    I should have clarified which configurable list I was referencing. I'm including a screenshot showing the edits I've made within the widget vs. what is showing on the form. Specifically, the old language, "When and how much," remains instead of the two new fields I've tried to create, "When" and "How Much."1624372324 60d1f464dd307 jotform configu Screenshot 10

  • Michal_S Jotform Support
    Replied on June 22, 2021 at 2:17 PM

    Hello!

    I can see that these labels are added using the widget's custom CSS, therefore modifying the list itself doesn't change anything:

    132498 1 Screenshot 10

    To adjust the custom CSS to fit your new settings, please do the following:

    • Remove this code:

    tbody tr td:nth-child(15)::before {

     content: 'When and how much?';

    }

    • Add this code:

    tbody tr td:nth-child(15)::before {

    content: 'When?';

    }

    tbody tr td:nth-child(16)::before {

    content: 'How much?';

    }

    • Increment the numbers in the following selectors and click Update Widget:

    132499 dada Screenshot 21

    This should edit the widget in your desired way.

    Please let us know if you require any further assistance.

    Thank you!

  • valerie.skillern
    Replied on June 22, 2021 at 2:55 PM

    Thank you so much! This worked perfectly!