Hi David,
Greetings from Syncfusion support.
We request you to use @bind-value attribute to value to the component if needs to dynamically change the value (As you have binded Value property may problem causing factor at your end) .you can refer the attached documentation for your reference. Also for your information change event will be triggered when typing and focusing out the component. It is intended behavior of the component.
@using Syncfusion.Blazor.Calendars <p>DateTimePicker value is: @DateValue</p>
<SfDateTimePicker TValue="DateTime?" @bind-Value="@DateValue"></SfDateTimePicker>
@code { public DateTime? DateValue { get; set; } = DateTime.Now; }
|
Kindly revert us with use case if you needs to do any process for every time the user types.
Thanks,
Deepak R.