gijgo
gijgo copied to clipboard
Issue regarding time picker
I have used datetimepicker with the option timepicker: false still, it shows me time picker but it's disabled so my main doubt is why it appears after selecting a date? Is there any way to hide the time picker and just show date picker.
here is my code,
$('#date-p').datetimepicker({
format: 'dd/mm/yyyy',
footer: true,
modal: true ,
timepicker: false,
});
try just using
$('#date-p').datepicker({
format: 'dd/mm/yyyy',
footer: true,
modal: true ,
});