DxTimeEditSettings.MinTime Property
Specifies the minimum time value that can be selected in the time editor.
Namespace: DevExpress.Blazor
Assembly: DevExpress.Blazor.v24.2.dll
NuGet Package: DevExpress.Blazor
Declaration
[Parameter]
public TimeSpan MinTime { get; set; }
Property Value
Type | Description |
---|---|
TimeSpan | A TimeSpan value in the range from 0 to a day that specifies the minimum time value. |
Remarks
Use the MinTime
and MaxTime properties to specify a range of available time values.
The time editor shows a notification message each time a user tries to navigate to a time value outside the range. The default notification text is “The selected time value should be between {MinTime} and {MaxTime}“. To customize the notification text, use the OutOfRangeNotificationText property.
<DxGrid Data="@timetable" EditMode="GridEditMode.EditRow">
<Columns>
<DxGridCommandColumn />
<DxGridDataColumn FieldName="ID" Visible="false" />
<DxGridDataColumn FieldName="Nickname" />
<DxGridDataColumn FieldName="StartTime">
<EditSettings>
<DxTimeEditSettings Format="h:mm"
DisplayFormat="t"
MinTime="@MinTime"
MaxTime="@MaxStartTime"
OutOfRangeNotificationText="Game time can start from 9 am to 8 pm."
ScrollPickerFormat="tt hh mm" />
</EditSettings>
</DxGridDataColumn>
<DxGridDataColumn FieldName="EndTime" >
<EditSettings>
<DxTimeEditSettings Format="h:mm"
DisplayFormat="t"
MinTime="@MinTime"
MaxTime="@MaxEndTime"
OutOfRangeNotificationText="Game time can end from 9 am to 9 pm."
ScrollPickerFormat="tt hh mm" />
</EditSettings>
</DxGridDataColumn>
</Columns>
</DxGrid>
@code {
Result[]? timetable;
TimeSpan MinTime = new TimeSpan(09, 0, 0);
TimeSpan MaxStartTime = new TimeSpan(20, 0, 0);
TimeSpan MaxEndTime = new TimeSpan(21, 0, 0);
protected override async Task OnInitializedAsync() {
timetable = await TimeTable.GetData();
}
}
To change the minimum time value at runtime, use the ITimeEditSettings.MinTime property instead.