Using DateTimepicker I want to set store opening time as 10:30 AM (for example) for the whole week. Using this piece of code I could able to restrict hours.
var curentDate = new Date();
var lastDate = new Date();
lastDate.setDate(curentDate.getDate() + 6);
$('#txtdate').datetimepicker({
inline: true,
sideBySide: true,
maxDate: lastDate,
minDate: curentDate,
enabledHours: HoursArray()
});
I set this to 15min increment but I'm not sure how to set minutes for all the days in a week. Also I want to disable minutes before 10:30 AM each day.
Can some one guide me on this?
I don't see the library exposing any ways to set the default time for each day, but you can take control into your own hands by using their events API and date() method. You could listen for change event Like this:
The event shows the
new date
andoldate
of the calendar. If the dates are different then you can change the time for new date using thedate()
method.Further Explanation
The when the event fires it returns three necessary references,
date
,olddate
,target
.Calling DateTimePicker Functions
Using Events
When you call the
dp.change
event. The call back function will return an objecte
that has the following accessible properties:The
e
property