You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a datepicker in mode "daytime" and i want to disable the ability for user to choose date and time later than the time they open the datepicker.
Datepicker is configured with this settings
datePickerFromConfig = {
format: "DD.MM.yyyy HH:mm",
locale: "uk-UA",
firstDayOfWeek: "mo",
disableKeypress: true,
monthBtnFormat: "MMMM",
min: undefined,
max: moment(),
maxTime: moment(),
minTime: moment().hour(0).minute(0),
showTwentyFourHours: true,
hours24Format: "HH",
displayDate: undefined
};
It looks like it handles only 00:00 time this way.
If i set minTime: moment().hour(1).minute(0), it works as expected
The text was updated successfully, but these errors were encountered:
My main problem is that picker allows to click down on button and if maxTime is, for example, 14:00, it allows you to click 13, 12, 11 ....2, 1 and then 0, 23, 22
Can i set datepicker maybe not to do this circle and just stop on 0?
I have a datepicker in mode "daytime" and i want to disable the ability for user to choose date and time later than the time they open the datepicker.
Datepicker is configured with this settings
datePickerFromConfig = {
format: "DD.MM.yyyy HH:mm",
locale: "uk-UA",
firstDayOfWeek: "mo",
disableKeypress: true,
monthBtnFormat: "MMMM",
min: undefined,
max: moment(),
maxTime: moment(),
minTime: moment().hour(0).minute(0),
showTwentyFourHours: true,
hours24Format: "HH",
displayDate: undefined
};
It looks like it handles only 00:00 time this way.
If i set minTime: moment().hour(1).minute(0), it works as expected
The text was updated successfully, but these errors were encountered: