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

Strict mode preventing manually entered data which is present in popup.

Sample

https://www.syncfusion.com/downloads/support/directtrac/general/ze/Timepicker_strictmode-27306982

Replication procedure: 

1. Run the above sample.

2. Type 16:15 in the TimePicker component and focus out.
3. Actual: The value changes to previously selected value.
4. Expected: The 16:15 should be updated

Code snippet: 

@using Syncfusion.Blazor.Calendars


<SfTimePicker StrictMode=true ScrollTo="@TimeValue" Step="15" Format="H:mm" CssClass="e-outline" @bind-Value='@TimeValue' Placeholder="Start Time" FloatLabelType="FloatLabelType.Auto"></SfTimePicker>


@code {

    public DateTime? TimeValue { get; set; } = new DateTime(DateTime.Now.Year, DateTime.Now.Month, 15, 3, 00, 00);

}