Hi, in the recurrence editor, when a user selects repeat= "daily"
- I want to restrict "Repeat Every" drop down list to have only certain values. e.g. "1","3"
- Also, the "End" drop down should only contain option "Until". How can I do this?
I tried the following, but getting this error - Cannot read property 'endType' of undefined
document.getElementById('RecurrenceEditor').style.display = (this.scheduleObj.currentAction == "EditOccurrence") ? 'none' : 'block';
(this.scheduleObj.eventWindow as any).recurrenceEditor.recurrenceEditor.endType.listData=[{text:'some text', value:'xxx'}]