gijgo icon indicating copy to clipboard operation
gijgo copied to clipboard

Issue regarding time picker

Open dmbackend opened this issue 3 years ago • 1 comments

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,
 });

dmbackend avatar Jun 13 '22 13:06 dmbackend

try just using

$('#date-p').datepicker({
 format: 'dd/mm/yyyy',
 footer: true,
 modal: true ,
 });

glconsultingservice avatar Jun 17 '22 17:06 glconsultingservice