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!>
Thanks for joining our community and helping improve Syncfusion products!
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
}
}
2. Pick the value as "February 8".
3. See the value in the popup after focus out. Value changed to Aug 8.