Open GeeZuZz opened 7 years ago
I'm trying to use the picker as only a time picker. But it insists in showing a date at the top of the view. Is it possible to remove it so it will only show the hours?
Also, why is the Today button shown, even if I set it to false?
$('.timepicker').datetimepicker( { startView: 0, format: "hh:ii", autoclose: "true", todayBtn: "false", maxView: "day", minuteStep: 15 } );
boolean type does not need "", such as "false", use false instead.
I'm trying to use the picker as only a time picker. But it insists in showing a date at the top of the view. Is it possible to remove it so it will only show the hours?
Also, why is the Today button shown, even if I set it to false?
$('.timepicker').datetimepicker( { startView: 0, format: "hh:ii", autoclose: "true", todayBtn: "false", maxView: "day", minuteStep: 15 } );