Open weinnandhasanion opened 3 months ago
setDates()
has no role in user interaction. It's just like a utility function to programmatically change both dates at once.
Handling user action on a child date picker is fully done by the date picker itself, then after a change is made, the date range picker normalizes the date range (filling/clearing the other side if one side is empty, flipping the dates if end < start) with the changeDate
event listener it added to the child input elements. This is why you don't see setDates()
being invoked on change.
Although overriding Datepicker's method through DateRangePicker is not possible, you can do something similar like this: https://codepen.io/mymth/pen/WNqZpGM
So basically, I want to have a custom format validator (using dayjs) applied to the DateRangePicker where I want to clear the value if an invalid date format is entered. This is doable for the DatePicker since I can easily override the instance's
update()
method, but how can I do this for the DateRangePicker? Below is a scenarioValid formats: ['DD MMM YYYY', 'DD/MM/YYYY', 'DD-MM-YYYY'] // 09 Aug 2024, 09/08/2024, 09-08-2024 Display format: 'DD MMM YYYY' (set via
format
option)I tried overriding
setDates()
but it seems like the method isn't being invoked on change, or am I missing something? Please help. Thanks