Time Range in Blazor TimePicker Component
17 Dec 20221 minute to read
TimePicker provides an option to select a time value within a specified range by using the Min and Max properties. The Min value should always be lesser than the Max value. The Value
property depends on the Min/Max with respect to StrictMode property.
The following code allows to select a time value within a range of 9:00 AM
to 11:30 AM
. For more information about StrictMode, refer to the Strict Mode section from the documentation.
@using Syncfusion.Blazor.Calendars
<SfTimePicker TValue="DateTime?" Value='@TimeValue' Min='@MinVal' Max='@MaxVal'></SfTimePicker>
@code{
public DateTime MinVal { get; set; } = new DateTime(DateTime.Now.Year, DateTime.Now.Month, 15, 09, 00, 00);
public DateTime MaxVal { get; set; } = new DateTime(DateTime.Now.Year, DateTime.Now.Month, 15, 11, 30, 00);
public DateTime? TimeValue { get; set; } = new DateTime(DateTime.Now.Year, DateTime.Now.Month, 15, 11, 00, 00);
}
When the Min
and Max
properties are configured and the selected time value is out-of-range or invalid, then the model value will be set to out of range
time value or null
respectively with highlighted error
class to indicate that the time is out of range or invalid.
@using Syncfusion.Blazor.Calendars
<SfTimePicker TValue="DateTime?" Value='@TimeValue' Min='@MinVal' Max='@MaxVal'></SfTimePicker>
@code{
public DateTime MinVal { get; set; } = new DateTime(DateTime.Now.Year, DateTime.Now.Month, 15, 09, 00, 00);
public DateTime MaxVal { get; set; } = new DateTime(DateTime.Now.Year, DateTime.Now.Month, 15, 11, 30, 00);
public DateTime? TimeValue { get; set; } = new DateTime(DateTime.Now.Year, DateTime.Now.Month, 15, 11, 40, 00);
}
NOTE
If the value of
Min
orMax
property is changed through code behind, you have to update theValue
property to set within the range.