Whats the correct way to handle ValueChange-Event in dynamically created SfDateTimePicker component?

Hi!

I'm using EventCallback.Factory.Create to attach a ValueChange event to SfDateTimePicker.
But if the event is attached, the control does only accept the first click on the calendar button.
so i can change the date only one time.
please see the attached video how the behaviour is.


this is the code that creates the component with the event:


@page "/dynamicforms"

@RenderForm

@using Syncfusion.Blazor.Calendars


@code{
    private RenderFragment RenderForm => builder =>
    {
        DateTime val = DateTime.Now;

        builder.OpenComponent(0, typeof(Syncfusion.Blazor.Calendars.SfDateTimePicker<DateTime?>));
        builder.AddAttribute(1, "Readonly", false);
        builder.AddAttribute(1, "Value", val);


        builder.AddAttribute(4, "ChildContent", (Microsoft.AspNetCore.Components.RenderFragment)((builder2) =>
        {
            builder2.AddMarkupContent(5, "\r\n    ");
            builder2.OpenComponent<Syncfusion.Blazor.Calendars.DateTimePickerEvents<DateTime?>>(6);
            builder2.AddAttribute(7, "ValueChange", EventCallback.Factory.Create<ChangedEventArgs<DateTime?>>(this, args =>
            {

            }));
            builder2.CloseComponent();
            builder2.AddMarkupContent(8, "\r\n");
        }));


        builder.CloseComponent();
    };
}

regards,
ferdinand

Attachment: video20210211_092005_39b0e9b9.zip

6 Replies 1 reply marked as answer

SN Sevvandhi Nagulan Syncfusion Team February 12, 2021 05:52 PM UTC

Hi Ferdinand, 



Greetings from Syncfusion support. 


We checked your query. In the code, you have bound the ValueChange event incorrectly. Hence we modified the sample and attached it below. 






Please check the above sample and get back to us if you need further assistance. 


Regards, 
Sevvandhi N 


Marked as answer

FW Ferdinand Weinberger February 17, 2021 08:28 AM UTC

Hi Sevvandhi!

thank you for your reply. this solves the problem.

regards,
Ferdinand


SN Sevvandhi Nagulan Syncfusion Team February 18, 2021 04:56 AM UTC

Hi Ferdinand, 



Thanks for the update. Please get back to us know if you need further assistance. 


Regards, 
Sevvandhi N 



EL Elko replied to Sevvandhi Nagulan October 19, 2024 10:53 AM UTC

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



YS Yohapuja Selvakumaran Syncfusion Team November 25, 2024 07:38 AM UTC

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




YS Yohapuja Selvakumaran Syncfusion Team December 13, 2024 07:10 AM UTC

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


Loader.
Up arrow icon