RecurrenceEditorComponent
Represents the Kendo UI Recurrence Editor component for Angular. Use this component to let users set recurrence rules for Scheduler events.
This example demonstrates the Recurrence Editor, among other components.
<kendo-scheduler
[kendoSchedulerBinding]="events"
[kendoSchedulerReactiveEditing]="createFormGroup"
>
<ng-template kendoSchedulerEditDialogTemplate let-formGroup="formGroup" let-event>
<kendo-formfield>
<kendo-recurrence-editor
[start]="event.value.start"
[formControl]="formGroup.get('recurrenceRule')"
></kendo-recurrence-editor>
</kendo-formfield>
</ng-template>
</kendo-scheduler>
Selector
kendo-recurrence-editor
Export Name
Accessible in templates as #kendoRecurrenceEditorInstance="kendoRecurrenceEditor"
Inputs
Name | Type | Default | Description |
---|---|---|---|
endAfterOptions |
|
Sets the options for the End After NumericTextBox in the recurrence | |
endOnOptions |
|
Sets the options for the End On DatePicker in the recurrence | |
repeatEveryOptions |
|
Sets the options for the Repeat Every NumericTextBox in the recurrence | |
repeatOnOptions |
|
Sets the options for the Repeat On NumericTextBox for choosing the day an event occurs in the monthly and yearly sections. | |
start |
|
Sets the start date for the event. | |
timezone |
|
|
Sets the id of the timezone to use. |
weekStart |
|
Sets the first day of the week. Uses the locale settings by default. |
Events
Name | Type | Description |
---|---|---|
valueChange |
|
Fires when the value of the component changes. |