Suppose I have the following kendo-editor:
<div kendo-editor ng-model="name" k-options="editorOptions"></div>
Then, I have the following editorOptions
:
function onChange(e) {
alert("I am changing.");
}
$scope.editorOptions = { change: onChange };
How can I access the actual kendo-editor object for me to trigger the onChange event without using the normal jQuery selection:
Example: $("#myEditor").kendoEditor().trigger("change")