New to Telerik UI for ASP.NET MVC? Download free 30-day trial

DateInputStepsSettingsBuilder

Methods

Day(System.Double)

A value used for incrementing/decrementing the year segment

Parameters

value - System.Double

The value that configures the day.

Example


            @(Html.Kendo().DateInput()
                .Name("dateinput")
                .Steps(s => s.Day(5))
            )

Hour(System.Double)

A value used for incrementing/decrementing the hour segment

Parameters

value - System.Double

The value that configures the hour.

Example


            @(Html.Kendo().DateInput()
                .Name("dateinput")
                .Steps(s => s.Hour(5))
            )

Millisecond(System.Double)

A value used for incrementing/decrementing the millisecond segment

Parameters

value - System.Double

The value that configures the millisecond.

Example


            @(Html.Kendo().DateInput()
                .Name("dateinput")
                .Steps(s => s.Millisecond(5))
            )

Minute(System.Double)

A value used for incrementing/decrementing the minute segment

Parameters

value - System.Double

The value that configures the minute.

Example


            @(Html.Kendo().DateInput()
                .Name("dateinput")
                .Steps(s => s.Minute(5))
            )

Month(System.Double)

A value used for incrementing/decrementing the month segment

Parameters

value - System.Double

The value that configures the month.

Example


            @(Html.Kendo().DateInput()
                .Name("dateinput")
                .Steps(s => s.Month(5))
            )

Second(System.Double)

A value used for incrementing/decrementing the second segment

Parameters

value - System.Double

The value that configures the second.

Example


            @(Html.Kendo().DateInput()
                .Name("dateinput")
                .Steps(s => s.Second(5))
            )

Year(System.Double)

A value used for incrementing/decrementing the year segment

Parameters

value - System.Double

The value that configures the year.

Example


            @(Html.Kendo().DateInput()
                .Name("dateinput")
                .Steps(s => s.Year(5))
            )

In this article
Not finding the help you need?