Welcome to the Blazor feedback portal. We’re happy you’re here! If you have feedback on how to improve the Blazor, we’d love to hear it!

  • Check out the features or bugs others have reported and vote on your favorites. Feedback will be prioritized based on popularity.
  • If you have feedback that’s not listed yet, submit your own.

Thanks for joining our community and helping improve Syncfusion products!

1
Vote

Environment:

  • Visual Studio 2019 Preview 3
  • .Net Core Preview 5
  • Synfusion.EJ2.AspNetCore.RazorComponents 17.1.0.44
  • Blazor template with client side


Code:

<EjsDatePicker ID="test1" ref="datePicker" Change="@printDay"></EjsDatePicker>


@functions
{
    EjsDatePicker datePicker;
    object selectedTime;

    void printDay(ChangedEventArgs e)
    {
        selectedTime = datePicker.Value;
        this.StateHasChanged();
    }
}

Comment:
The "Change" can trigger the handler properly, but the value is only set at the first time, and the value from ChangedEventArgs is always "{}";

I tried blazor server side, and the browser didn't show the component at all.