Hello,
In my scheduler I want to customize the GroupHeaderTeamplate, so I can make it something like (look at the marked area on the attached image).
It includes: room numer, photo of the attendee and a name.
I am grouping my "Rooms" resource so they are being shown in a sorted order. But how do I add the other properties to the header?
.Group(group => group.Resources("Rooms").Orientation(SchedulerGroupOrientation.Horizontal)) .GroupHeaderTemplate("#= text #") .Resources(resource => { resource.Add(m => m.RoomID) .Title("Room") .Name("Rooms") .DataTextField("RoomName") .DataValueField("RoomID") .BindTo(Model.ResidenceCalendarResourceModelList); })
