Represents the template directive for customizing the text of the recurrence button in the Scheduler edit form.
To define the template, nest an <ng-template> tag with the kendoSchedulerRecurrenceButtonTextTemplate 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 button text that would have been displayed.
Definition
Package:@progress/kendo-angular-scheduler
Selector:[kendoSchedulerRecurrenceButtonTextTemplate]
Syntax:
html
<kendo-scheduler>
<ng-template kendoSchedulerRecurrenceButtonTextTemplate let-recurrenceRule let-parsedRule="parsedRule" let-text="text">
<span>{{ rule ? 'Edit repeating pattern' : 'Repeat this event' }}</span>
</ng-template>
</kendo-scheduler>