DateInputStepsSettingsBuilder

Methods

Day(System.Double)

A value used for incrementing/decrementing the year segment

Parameters

value - System.Double

The value for Day

RETURNS

Returns the current DateInputStepsSettingsBuilder instance.

Example

Razor
 
            @(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 for Hour

RETURNS

Returns the current DateInputStepsSettingsBuilder instance.

Example

Razor
 
            @(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 for Millisecond

RETURNS

Returns the current DateInputStepsSettingsBuilder instance.

Example

Razor
 
            @(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 for Minute

RETURNS

Returns the current DateInputStepsSettingsBuilder instance.

Example

Razor
 
            @(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 for Month

RETURNS

Returns the current DateInputStepsSettingsBuilder instance.

Example

Razor
 
            @(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 for Second

RETURNS

Returns the current DateInputStepsSettingsBuilder instance.

Example

Razor
 
            @(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 for Year

RETURNS

Returns the current DateInputStepsSettingsBuilder instance.

Example

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