New to Telerik UI for ASP.NET Core? Start a free 30-day trial
TimeDurationPicker Shortcuts
The shortcuts configuration of the Kendo UI for ASP.NET Core TimeDurationPicker enables you to render custom button elements in the popup.
These buttons can hold time frame values. Upon clicking any of them, the value of the TimeDurationPicker will be updated with the value of the corresponding button. You have to specify the value of the shortcuts in milliseconds.
The following example showcases how to define a shortcut:
Razor
@(Html.Kendo().TimeDurationPicker()
.Name("timeDurationPicker")
.Columns(c =>
{
c.Hours().Format("## hours ");
c.Minutes().Format(" ## minutes ");
})
.Shortcuts(s =>
{
s.Add().Text("1h 30min").Value(5400000);
s.Add().Text("2h 30min").Value(9000000);
s.Add().Text("4 hours").Value(14400000);
})
.Separator(":")
)