BoldDesk®Customer service software offering ticketing, live chat, and omnichannel support, starting at $49/mo. for 10 agents. Try it for free.
Hi Sevvandhi Nagulan,
i tried this sample with a breakpoint in the onChange. It does not stop here. Do I need any changes?
Regards
Elko
Hi Elko,
We have considered this issue "Change event is not triggered when rendering datetimepicker using render fragment" as a bug from our end, and the fix for the issue will be included in our upcoming weekly release which is expected to be scheduled on mid of December.
You can now track the status of the feedback through the below link,
Feedback link: Change event is not triggered when rendering datetimepicker using render fragment in Blazor | Feedback Portal (syncfusion.com)
Disclaimer: “Inclusion of this solution in the weekly release may change due to other factors including but not limited to QA checks and works reprioritization.”
Regards,
Yohapuja S
Hi Elko,
We understand the concern regarding the ValueChange event not triggering in the Syncfusion Blazor DatePicker component. Below, we’ve outlined the root cause and solution to address this issue. The issue occurs due to incorrect event binding within the dynamically rendered DatePicker component.
Use the EventCallback.Factory.Create method to properly bind the ValueChange event to the event handler.
builder2.AddAttribute(6, "ValueChange", EventCallback.Factory.Create<ChangedEventArgs<DateTime?>>(this, onChange)); |
This setup ensures that the ValueChange event is correctly recognized and triggered in the DatePicker component. To assist you further, we’ve prepared examples demonstrating the correct implementation:
Sample : https://blazorplayground.syncfusion.com/htLzsLNigicpIxBS
Regards,
Yohapuja S