cascade

Fired when the value of the widget is changed via API or user interaction.

Event Data

e.sender kendo.ui.DropDownList

The widget instance which fired the event.

Example - subscribe to the "cascade" event during initialization

<input id="dropdownlist" />
<script>
$("#dropdownlist").kendoDropDownList({
  dataSource: [ "Apples", "Oranges" ],
  cascade: function() {
    // Handle the event
  }
});
</script>

Example - subscribe to the "cascade" event after initialization

<input id="dropdownlist" />
<script>
function dropdownlist_cascade(e) {
    // Handle the event
}
$("#dropdownlist").kendoDropDownList({
  dataSource: [ "Apples", "Oranges" ]
});

var dropdownlist = $("#dropdownlist").data("kendoDropDownList");
dropdownlist.bind("cascade", dropdownlist_cascade);
</script>
In this article