\Kendo\UI\DateInputSteps

A PHP class representing the steps setting of DateInput.

Methods

day

A value used for incrementing/decrementing the year segment

Returns

\Kendo\UI\DateInputSteps

Parameters

$value float

Example

<?php
$steps = new \Kendo\UI\DateInputSteps();
$steps->day(1);
?>

hour

A value used for incrementing/decrementing the hour segment

Returns

\Kendo\UI\DateInputSteps

Parameters

$value float

Example

<?php
$steps = new \Kendo\UI\DateInputSteps();
$steps->hour(1);
?>

millisecond

A value used for incrementing/decrementing the millisecond segment

Returns

\Kendo\UI\DateInputSteps

Parameters

$value float

Example

<?php
$steps = new \Kendo\UI\DateInputSteps();
$steps->millisecond(1);
?>

minute

A value used for incrementing/decrementing the minute segment

Returns

\Kendo\UI\DateInputSteps

Parameters

$value float

Example

<?php
$steps = new \Kendo\UI\DateInputSteps();
$steps->minute(1);
?>

month

A value used for incrementing/decrementing the month segment

Returns

\Kendo\UI\DateInputSteps

Parameters

$value float

Example

<?php
$steps = new \Kendo\UI\DateInputSteps();
$steps->month(1);
?>

second

A value used for incrementing/decrementing the second segment

Returns

\Kendo\UI\DateInputSteps

Parameters

$value float

Example

<?php
$steps = new \Kendo\UI\DateInputSteps();
$steps->second(1);
?>

year

A value used for incrementing/decrementing the year segment

Returns

\Kendo\UI\DateInputSteps

Parameters

$value float

Example

<?php
$steps = new \Kendo\UI\DateInputSteps();
$steps->year(1);
?>
In this article
Not finding the help you need?