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

Close

events

Fired when the popup of the widget is closed.

The event handler function context (available via the this keyword) will be set to the widget instance.

Event Data

e.sender kendo.ui.DropDownList

The widget instance which fired the event.

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

var dropdownlist = $("#dropdownlist").data("kendoDropDownList");
dropdownlist.bind("close", dropdownlist_close);
</script>
Not finding the help you need?
Contact Support