I encountered a very strange problem when using the Any+Time DatePicker library: the days of the month are not true. The screenshot below shows the November:
As you can see, 5 November is a Thursday, but 6 November is a Saturday. The same thing happens with other months:
JS code snippet:
<script>
$("#anytime-month-numeric-task-taskDate").AnyTime_picker({
format: "%d.%m.%Z %H:%i",
beforeShow: function () {
setTimeout(function () {
$('.ui-datepicker').css('z-index', 99999999999999);
}, 0);
}
});
</script>
What could be the reason?
Thanks.