DateInputStepsSettingsBuilder
Methods
Day(System.Double)
Specifies the steps for incrementing/decrementing the day segment.
Parameters
value - System.Double
The value that configures the day step.
Example
@(Html.Kendo().DateInput()
.Name("dateinput")
.Steps(s => s.Day(5))
)
Hour(System.Double)
Specifies the steps for incrementing/decrementing the hour segment.
Parameters
value - System.Double
The value that configures the hour step.
Example
@(Html.Kendo().DateInput()
.Name("dateinput")
.Steps(s => s.Hour(5))
)
Millisecond(System.Double)
Specifies the steps for incrementing/decrementing the millisecond segment.
Parameters
value - System.Double
The value that configures the millisecond step.
Example
@(Html.Kendo().DateInput()
.Name("dateinput")
.Steps(s => s.Millisecond(5))
)
Minute(System.Double)
Specifies the steps for incrementing/decrementing the minute segment.
Parameters
value - System.Double
The value that configures the minute step.
Example
@(Html.Kendo().DateInput()
.Name("dateinput")
.Steps(s => s.Minute(5))
)
Month(System.Double)
Specifies the steps for incrementing/decrementing the month segment.
Parameters
value - System.Double
The value that configures the month step.
Example
@(Html.Kendo().DateInput()
.Name("dateinput")
.Steps(s => s.Month(5))
)
Second(System.Double)
Specifies the steps for incrementing/decrementing the second segment.
Parameters
value - System.Double
The value that configures the second step.
Example
@(Html.Kendo().DateInput()
.Name("dateinput")
.Steps(s => s.Second(5))
)
Year(System.Double)
Specifies the steps for incrementing/decrementing the year segment.
Parameters
value - System.Double
The value that configures the year step.
Example
@(Html.Kendo().DateInput()
.Name("dateinput")
.Steps(s => s.Year(5))
)