Blazorise icon indicating copy to clipboard operation
Blazorise copied to clipboard

DatePicker DateChanged event not working on dateremove

Open danik121 opened this issue 1 year ago • 0 comments

Describe the bug DatePicker DateChanged event not working on date remove . If I use "backspace" or ctrl+a del event it will not fire. If I click on the tab after deleting it works. In my case I delete the value and then click save. But changes are not saved. View value is changed

It worked on version 1.2.0

To Reproduce Steps to reproduce the behavior:

<DatePicker DateChanged="@DateChanged" TValue="DateTime?" Placeholder="dd/mm/yyyy" ElementId="EndDate" Size="Size.Small" DisplayFormat="dd/MM/Y" Date="@EndDate" />

    private void DateChanged(DateTime? dateTime)
    {
      EndDate = dateTime;
    }

Expected behavior Trigger change event after every change

danik121 avatar May 04 '23 07:05 danik121