open
Fired when the popup of the widget is opened by the user.
The event handler function context (available via the this
keyword) will be set to the widget instance.
Event Data
e.sender kendo.ui.ComboBox
The widget instance which fired the event.
Example - subscribe to the "open" event during initialization
<input id="combobox" />
<script>
$("#combobox").kendoComboBox({
dataSource: [ "Apples", "Oranges" ],
open: function(e) {
// handle the event
}
});
</script>
Example - subscribe to the "open" event after initialization
<input id="combobox" />
<script>
function combobox_open(e) {
// handle the event
}
$("#combobox").kendoComboBox({
dataSource: [ "Apples", "Oranges" ]
});
var combobox = $("#combobox").data("kendoComboBox");
combobox.bind("open", combobox_open);
</script>