Hi,
Recently I have implemented the date range component like described here: https://www.telerik.com/kendo-angular-ui/components/dateinputs/daterange/popup. The component normaly works as following:
But what a few users have issues with is the following scenario:
The same issue also occurs with the MultiViewCalendar. I didn't add a runnable project because the same issue also occurs in the documentation which I linked above.
We are using @progress/kendo-angular-dateinputs": "17.0.1"
It looks like this line in the performRangeSelection method in the MultiViewCalendarComponent causes this behaviour:
const emitValueChange = (this.activeRangeEnd === 'start' && this.value?.start?.getTime() !== date?.getTime()) ||
(this.activeRangeEnd === 'end' && this.value?.end?.getTime() !== date?.getTime());
Thanks,
Joren