\Kendo\UI\SchedulerGroup
A PHP class representing the group setting of Scheduler.
Methods
date
If set to true and the group.resources has some resources set the view is grouped by date.
Returns
\Kendo\UI\SchedulerGroup
Parameters
$value boolean
Example
<?php
$group = new \Kendo\UI\SchedulerGroup();
$group->date(true);
?>
orientation
The orientation of the group headers. Supported values are horizontal or vertical. Note that the agenda view is always in vertical orientation.
Returns
\Kendo\UI\SchedulerGroup
Parameters
$value string
Example
<?php
$group = new \Kendo\UI\SchedulerGroup();
$group->orientation('value');
?>
resources
An array of resource names by which the scheduler events will be grouped.
Returns
\Kendo\UI\SchedulerGroup
Parameters
$value array
Example
<?php
$group = new \Kendo\UI\SchedulerGroup();
$group->resources(array());
?>