New to Kendo UI for Angular? Start a free 30-day trial
MultiWeekDaySlotTemplateDirective
Use this directive to customize the day slots in the Multi-Week view of the Scheduler.
To defina a day slot template, nest an <ng-template>
tag with the kendoSchedulerMultiWeekDaySlotTemplate
directive inside the
<kendo-scheduler>
or <kendo-scheduler-multi-week-view>
component (see example).
The available fields in the template context are:
date
—The date of the slot.resources
—The resources of the slot.
html
<kendo-scheduler-multi-week-view>
<ng-template kendoSchedulerMultiWeekDaySlotTemplate let-date="date" let-resources="resources">
<!-- custom multi-week day slot -->
</ng-template>
<kendo-scheduler-multi-week-view>
Selector
[kendoSchedulerMultiWeekDaySlotTemplate]