If i enter a date 01/01/1965 the ui will show the currentday screen only because its less than startDate
also 10/1/10000 the ui willshow currentday screen only because greater than endDate
but if i enter a date like 99/99/2000 in the ui it picks 06/07/2000 the input does not change remains as 99/99/2000 because of forceParse = False. i dont want ui to show some approximate date for invalid dates. I want it to be consistent the same way if the date is not in the range of startdate and enddate
Expected behaviour
keeping the UI consistent with invalid dates
Actual behaviour
If i enter a date
01/01/1965
the ui will show the currentday screen only because its less than startDate also 10/1/10000 the ui willshow currentday screen only because greater than endDatebut if i enter a date like
99/99/2000
in the ui it picks06/07/2000
the input does not change remains as 99/99/2000 because of forceParse = False. i dont want ui to show some approximate date for invalid dates. I want it to be consistent the same way if the date is not in the range of startdate and enddateDatepicker version used
1.10.0
Example code