This is a migrated thread and some comments may be shown as answers.

OnChange event for Scheduler Edit Modal Field?

1 Answer 322 Views
Scheduler
This is a migrated thread and some comments may be shown as answers.
Bill
Top achievements
Rank 1
Bill asked on 27 May 2020, 01:26 AM
Is there an 'OnChange' or 'Change' event I can hook into to react to change of a field in the scheduler's edit event modal dialog? If so can you point to an example?  Trying to do this without creating a Custom Edit Template if I don't have to.

1 Answer, 1 is accepted

Sort by
0
Martin
Telerik team
answered on 28 May 2020, 02:42 PM

Hello Bill,

A possible approach would be to bind to the edit event of the Scheduler and bind an event handler to the desired input field. In this Dojo example, I can get a reference to the DropDownList for the repeat rule, and bind a handler to the change event:

edit: function(e) {
  var ddl = $("input[title='Recurrence editor']").data("kendoDropDownList");
  ddl.bind("change", ddlChange);
}

I hope that will help you achieve the desired result. Let me know if you have any questions.

Regards,
Martin
Progress Telerik

Progress is here for your business, like always. Read more about the measures we are taking to ensure business continuity and help fight the COVID-19 pandemic.
Our thoughts here at Progress are with those affected by the outbreak.
Tags
Scheduler
Asked by
Bill
Top achievements
Rank 1
Answers by
Martin
Telerik team
Share this question
or