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

I am using datepicker and in this I am setting "Format" .Below code snippet is present.



<EjsDatePicker CssClass="cdatepicker"  id="datepicker" TValue="DateTime?"  @bind-Value="@DateValue" Format="dd/MM/yy"></
EjsDatePicker
>



@code
{

private async Task getFilteredAsync()

    {

        DateTime dt = DateValue.Value;

    }


}


In this dt If I select "11/03/2020" then I get value as  "
03/11/2020 12.00.00 AM
" but If I select date as "04/03/2020" then in dt I get value like this "04/03/2020 12.00.00 AM".I am using 

17.4.39 version.so Let me know if I am doing anything wrong or this is bug 

ASAP.