With .50 I can't set the bound value to null. An exception occurs.
<EjsButton @onclick="JonahButtonClick">Clear</EjsButton>
<EjsDatePicker @bind-Value="bulkEditDateValue" Placeholder='Completion...' @ref="@bulkEditDatePickerCompletion" Width="200px"></EjsDatePicker>
@code{
protected EjsDatePicker<DateTime?> bulkEditDatePickerCompletion;
protected DateTime? bulkEditDateValue;
protected override void OnInitialized()
{
}
protected async void JonahButtonClick()
{
bulkEditDateValue = null;
}
}