|
@using Syncfusion.Blazor.Calendars
<SfTimePicker TValue="TimeSpan" @bind-Value="myTime" Format="@("hh\\:mm\\:ss")"></SfTimePicker>
@code {
TimeSpan myTime = new TimeSpan(12, 59, 59);
} |
After I updated Syncfusion version
using this format:
I can no longer specify a time beyond 12:30
It looks like it's behaving like an 12h format (AM and PM) but it's set to 24h format (pt-BR culture)