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!

3
Votes

While given format as "dd/MM/yyyy", value get changed as "MM/dd/yyyy " format. Same issue reproduced with "-" separator.


Replication Procedure:



1. Please run the sample with below code.

<EjsDatePicker TValue="DateTime?" Format="dd/MM/yyyy" @bind-Value="@Date"></EjsDatePicker>

@code {
private DateTime? date = null;

public DateTime? Date
{
get => date;
set

{ date = value; }

}
}
2. Pick the value as "February 8".
3. See the value in the popup after focus out. Value changed to Aug 8.