Hierarchical Grouping
The hierarchical resource grouping feature allows you to group the resources of the Scheduler horizontally or vertically and display the resources in a parent-child structure.
When you enable the hierarchical grouping, the groups consist of parents and children, where each parent resource member can have a different child resource group. For example, if the Scheduler has Rooms as a parent resource, different Attendees can be assigned to each room. In this setup, the parent resources (such as rooms, attendees, equipment, and more) are displayed as rows or columns based on the defined orientation (vertical or horizontal), with child resources nested beneath them.
To configure the hierarchical grouping of the Scheduler's resources:
- Add the desired resources in the
Resources()
configuration. The order of the resources must follow the parent-child relation. The last resource in theResources()
configuration must not be a parent. -
Use the
DataParentValueField()
option in the child resource to specify the name of the field that holds the parent value (the parent value equals the value of the field defined asDataValueField
in the parent resource.)@(Html.Kendo().Scheduler<MeetingViewModel>() .Name("scheduler") .Resources(resource => { resource.Add(m => m.RoomID) // Parent resource. .Title("Room") .Name("Rooms") .DataTextField("Text") .DataValueField("Value") .DataColorField("Color") .BindTo(new[] { new { Text = "Meeting Room 101", Value = 1, Color = "#6eb3fa" }, new { Text = "Meeting Room 201", Value = 2, Color = "#f58a8a" } }); resource.Add(m => m.Attendees) // Child resource. .Title("Attendees") .Name("Attendees") .Multiple(true) .DataTextField("Text") .DataValueField("Value") .DataColorField("Color") .DataParentValueField("Parent") // The "Parent" field in the "SchedulerResourceModel" Model holds the value of the "Value" field in the "Room" resource. .BindTo(new List<SchedulerResourceModel>() { new SchedulerResourceModel(){ Text = "Alex", Color="red", Value = 1}, new SchedulerResourceModel(){ Text = "Bob", Color="green", Value = 2, Parent = 1 } , new SchedulerResourceModel(){ Text = "Charlie",Color="yellow", Value = 3, Parent = 2 } }); }) ...// Additional configuration. )
Only the last one of the resources can be configured to allow multiple instance resources.
Add the
Group()
configuration and specify the names of the resources in theResources()
option.-
To group the resources vertically, set the
Orientation()
option toSchedulerGroupOrientation.Vertical
. The available options of theSchedulerGroupOrientation
setting areDefault
(horizontal),Horizontal
, andVertical
.@(Html.Kendo().Scheduler<MeetingViewModel>() .Name("scheduler") .Group(group => group.Resources("Rooms", "Attendees").Orientation(SchedulerGroupOrientation.Vertical)) ...// Additional configuration. )