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
currently popup dont respect value entered from keyboard
in Calendar.setDate
calendarMonth.show();
yearMonthPicker.hide();
must be called (like this):
public Calendar setDate(final Date date) {
final Date oldDate = this.date;
this.date = date;
if (nonNull(date)) {
onDateViewUpdate(this.date);
onDateSelectionChanged(this.date);
calendarMonth.show();
yearMonthPicker.hide();
triggerChangeListeners(oldDate, this.date);
}
return this;
}
currently opens in last selected page
changehandler in DateBox (and TimeBox too) do not respect label
if (parseStrict) {
invalidate("Unable to parse date value " + value);
}
must be changed to
if (parseStrict) {
invalidate(getLabels().calendarInvalidDateFormat());
}
like validator check does
The text was updated successfully, but these errors were encountered:
salashnik
changed the title
few proposed fixes for DateBox/TimeBox/Calendar
few proposed fixes for DateBox/TimeBox/Calendar (domino-ui v2)
May 17, 2024
Calendar
DATE_NAVIGATION_CHANGED
event listenerthis.date = updatedDate;
must be before
onDateViewUpdate(updatedDate);
causes strange behaviour when months changed
DateBox
calendar.setDate
must be called before popover open, like this:currently popup dont respect value entered from keyboard
Calendar.setDate
must be called (like this):
currently opens in last selected page
DateBox
(andTimeBox
too) do not respect labelmust be changed to
like validator check does
The text was updated successfully, but these errors were encountered: