dataBound

Fires when the ListBox has received data from the data source and is already rendered.

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

Example

<select id="listBox"></select>
<script>
$("#listBox").kendoListBox({
   template: "<div>#: name#</div>",
   dataSource: [
       { name: "John Doe", age: 30 }
   ],
   dataBound: function() {
       //handle event
/* The result can be observed in the DevTools(F12) console of the browser. */
       console.log("data bound");
   }
});
</script>
In this article