\Kendo\UI\CalendarRange

A PHP class representing the range setting of Calendar.

Methods

end

Specifies the end date of the range selection.

Returns

\Kendo\UI\CalendarRange

Parameters

$value date

Example

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

start

Specifies the start date of the range selection.

Returns

\Kendo\UI\CalendarRange

Parameters

$value date

Example

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