\Kendo\UI\DateRangePickerRange

A PHP class representing the range setting of DateRangePicker.

Methods

end

This sets the end date of the range selection.

Returns

\Kendo\UI\DateRangePickerRange

Parameters

$value date

Example

<?php
$range = new \Kendo\UI\DateRangePickerRange();
$range->end(new date());
?>

start

This sets the start date of the range selection.

Returns

\Kendo\UI\DateRangePickerRange

Parameters

$value date

Example

<?php
$range = new \Kendo\UI\DateRangePickerRange();
$range->start(new date());
?>
In this article
Not finding the help you need?