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!

0
Votes

after render the component withy 20.4.43 version the datepicker inputs shows time value but before versions the input shows only date value.


Sample code example:

<span>@DateValue</span>


<SfDatePicker TValue="DateTime?" Placeholder="Choose a Date" ShowClearButton="true" @bind-Value="DateValue"></SfDatePicker>


@code {

    public DateTime? DateValue { get; set; }

}




Replication procedure:

1. Run the sample

2. Select any value

Expected: the input shows only date value

Output: the input shows date with time value.