Configurable List widget: Remove the ability to delete added entry

  • Karin Noll
    Asked on February 23, 2023 at 3:40 AM
    Also, is there a way to make sure once an entry is made that it won’t have the option to be deleted?
  • Rica Support Team Lead
    Replied on February 23, 2023 at 3:47 AM

    Hi Karin,

    Are you referring to the entries added in the Configurable List widget? If so, we can hide the remove button to avoid people from deleting the entries added to the widget. To do this, kindly inject the following CSS code into the widget's CSS section:

    .buttonsColumn {
      display: none !important;
    }

    1677141961 63f727c9da939  Screenshot 10

    Here's the result:

    1677141982 63f727dee8ff8  Screenshot 21

    Let us know if there’s anything else we can help you with. 

  • fassd
    Replied on February 23, 2023 at 10:01 AM
    No, I want the last entry to be first so if there’s a hundred entires you
    don’t have to scroll down a hundred entries to make a new one
    ...
  • Joseph_A JotForm Support
    Replied on February 23, 2023 at 10:25 AM

    Hello Karin,

    Thanks for reaching out to JotForm Support. Please allow me some time to check on this, I will get back to you as soon as I have an update.

    Thank you for your patience.

  • Joseph_A JotForm Support
    Replied on February 23, 2023 at 12:00 PM

    Hello Karin,

    Thank you for patiently waiting. Kindly inject this CSS code into your configuration list widget.

    div#listContainer {
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-end;
    }
    .configurable-list-wrapper {
    flex-wrap: wrap;
    display: flex;
    justify-content: flex-start;
    flex-direction: column-reverse;
    }

    Result:

    1677171567 63f79b6fcdf58  Screenshot 10 Please keep in mind The CSS will affect the form only visually. In the submission, the data will appear in its default format, and we cannot change that.

    Give it a try and reach out again if you have any other questions.