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

Bind

methods

Attaches a handler to an event. Examples and more info can be found in the bind section of the kendo.Observable API reference.

<div id="button"></div>
<script>
$("#button").kendoButton({
    click: function() {
        console.log("Button clicked");
    }
});

var widget = $("#button").data("kendoButton");
widget.bind("click", function(e) {
    console.log("Additional click handler attached via bind");
});
</script>
Not finding the help you need?
Contact Support