Let's say we have a DateTimePicker two-way bound to a DateTime? value:
<TelerikDatePicker @bind-Value="searchCriteria.specificDate" ShowClearButton="true"></TelerikDatePicker>
public DateTime? specificDate {get; set; }
The user enters an invalid value, such as 1/d/yyyy.
How do you reset it programmatically?
Assigning the bound value to null doesn't do anything, as it's already null.
I don't see a reset method anywhere?
It'd be nice if there was a way to programmatically call whatever is called when the user clicks on the ClearButton.
Thanks.
p.s. This probably applies to all the date/time picker variations.