RecurrenceSummaryTemplateDirective
Directive
Represents the template directive for customizing the recurrence summary of the Recurrence Editor.
To define the template, nest an <ng-template> tag with the kendoSchedulerRecurrenceSummaryTemplate directive
inside the <kendo-scheduler> tag.
The template context is set to the current recurrence rule and the following additional fields are passed:
recurrenceRule—The current recurrence rule as a string.parsedRule—The parsedRecurrenceRuleobject.text—The default summary text that would have been displayed.
Definition
Package:@progress/kendo-angular-scheduler
Selector:[kendoSchedulerRecurrenceSummaryTemplate]
Syntax:
html
<kendo-scheduler>
<ng-template kendoSchedulerRecurrenceSummaryTemplate let-recurrenceRule let-parsedRule="parsedRule" let-text="text">
<span>{{ text }}</span>
</ng-template>
</kendo-scheduler>