How can I set the time field with a 15-minute stepping interval?

  • WRESfieldops
    Asked on February 23, 2018 at 1:30 AM

    How can I configure the time menu to show the minutes in 15 minute intervals?

  • Support_Management Jotform Support
    Replied on February 23, 2018 at 6:17 AM

    I'm afraid you can't configure the minute stepping of the time field within the CONFIGURABLE LIST WIDGET. This option is only available to the default TIME FIELD on the form builder.

    How can I set the time field with a 15 minute stepping interval? Image 1 Screenshot 30

    There's a workaround that you can try using CSS. Just add the following CSS codes to the CUSTOM CSS tab of the CONFIGURABLE LIST WIDGET to hide all the minutes within the time dropdown field except 00, 15, 30, and 45 (giving the impression that you're restricting them to a 15-minute interval).

    select.m option {

        display: none;

    }

    select.m option:nth-child(16), select.m option:nth-child(31), select.m option:nth-child(46) {

        display: block;

    }

    Related guide: How-to-Inject-CSS-Codes-to-Widgets

    Result:

    How can I set the time field with a 15 minute stepping interval? Image 2 Screenshot 41