cascade
Fired when the value of the widget is changed via API or user interaction.
Event Data
e.sender kendo.ui.ComboBox
The widget instance which fired the event.
Example - subscribe to the "cascade" event during initialization
<input id="combobox" />
<script>
$("#combobox").kendoComboBox({
dataSource: [ "Apples", "Oranges" ],
cascade: function() {
// Handle the event
}
});
</script>
Example - subscribe to the "cascade" event after initialization
<input id="combobox" />
<script>
function combobox_cascade(e) {
// Handle the event
}
$("#combobox").kendoComboBox({
dataSource: [ "Apples", "Oranges" ]
});
var combobox = $("#combobox").data("kendoComboBox");
combobox.bind("cascade", combobox_cascade);
</script>