Unable to correct input datetime field when a value is selected that goes out of range using date pi
HI Community
Currently I am using JDeveloper Studio Edition Version 12.2.1.3.0, where I face an issue that I am unable to correct the date and time of an inputDate field when a user selects a date and time out of range for the provided minValue and max Value using date. Picker
<af:panelLabelAndMessage label="End Date" labelStyle="text-align:left;" id="plam25">
<af:inputDate value="#{bindings.EndDate.inputValue}" label="#{bindings.EndDate.hints.label}" simple="true" required="#{bindings.EndDate.hints.mandatory}" shortDesc="#{bindings.EndDate.hints.tooltip}" id="id2" valueChangeListener="#{viewScope.ScheduleCalendarBean.changeCalendarEndDate}" autoSubmit="true" readOnly="#{sessionScope.psManager eq 'Y' or (sessionScope.psManager eq 'N' and bindings.Confirm.inputValue eq 'Y' and bindings.Dateflag.inputValue eq 'Y') ? 'false' : 'true'}" binding="#{viewScope.ScheduleCalendarBean.calendarEndDate}" disabledDays="#{sessionScope.psManager eq 'N' ? HolidaysListBean : null}" minValue="#{bindings.StartDate.inputValue}" validator="#{viewScope.ScheduleCalendarBean.validateCalendarEndDate}" maxValue="#{viewScope.ScheduleCalendarBean.maxEndDate}"