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.MultiSelect

The widget instance which fired the event.

<select id="multiselect" multiple="multiple">
    <option>Item1</option>
    <option>Item2</option>
</select>
<script>
$("#multiselect").kendoMultiSelect({
  dataBound: function(e) {
      // handle the event
  }
});
</script>
<select id="multiselect" multiple="multiple">
    <option>Item1</option>
    <option>Item2</option>
</select>
<script>
function multiselect_dataBound(e) {
  // handle the event
}
$("#multiselect").kendoMultiSelect();
var multiselect = $("#multiselect").data("kendoMultiSelect");
multiselect.bind("dataBound", multiselect_dataBound);
</script>
Not finding the help you need?
Contact Support