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

DataBound

events

Fired when the widget is bound to data from its data source.

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.

<input id="combobox" />
<script>
$("#combobox").kendoComboBox({
  dataSource: [ "Apples", "Oranges" ],
  dataBound: function(e) {
      // handle the event
  }
});
</script>
<input id="combobox" />
<script>
function combobox_dataBound(e) {
  // handle the event
}
$("#combobox").kendoComboBox({
  dataSource: [ "Apples", "Oranges" ]
});
var combobox = $("#combobox").data("kendoComboBox");
combobox.bind("dataBound", combobox_dataBound);
</script>
Not finding the help you need?
Contact Support