New to Kendo UI for jQueryStart a free 30-day trial

Trigger

methods

Executes all handlers attached to the given event.

Parameters:eventNameString

The name of the event to trigger.

eventDataObject

Optional event data which will be passed as an argument to the event handlers.

<script>
var obj = new kendo.Observable();
obj.bind("myevent", function(e) {
/* The result can be observed in the DevTools(F12) console of the browser. */
    console.log(e.data); // outputs "data"
});
obj.trigger("myevent", { data: "data" });
</script>
Not finding the help you need?
Contact Support