I am using the Radzen Datepicker with InLine set to true so the user can select multiple dates. However, when you go to the next month, it automatically selects that date. For example, if I were to go to the next month today, it would automatically change the value to 12/30/2020.
This is a problem because in my application the dates selected are all being appended to a list and in 95% of the time, the user will not to auto add that auto selected date to the list. As a way around this, I have checked to make sure the next date isn't a month ahead or behind in order to be added to the list which works fine, but in the rare scenario the user would like to be able to select that date, how would they go about it? The only way I can do that is by selecting another date, deleting it from the list, then selecting that date again.
In short, is there a way to deselect the date once it is selected (or conversely get the value from it when selecting it again) without having to select a different date or is it possible to not automatically set the value once the date picker cycles through months?
Example use case:
User cycles to next month -> 12/30/2020 is auto selected (current logic prevents it from being added to the list) -> User would like to add it -> They select a different date in which they then must delete that non applicable date from the list -> Reselect 12/30/2020 to add to the list.
Any insight would be greatly appreciated... thanks!