bind
Attaches a handler to an event. Examples and more info can be found in the bind section of the kendo.Observable
API reference.
Example
<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>
In this article