Is it possible to set the minimum and maximum values of the timepicker in a date_popup field? I use this code for the field, but something like ‘minTime’ is not working.
$form['fetch_date'] = array( '#type' => 'date_popup', '#description' => t('Datum waarop u uw bestelling wil ophalen.'), '#required' => TRUE, '#title' => 'Afhaal Datum', '#datepicker_options' => array( 'minDate' => 0, ), );