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

DataBound

events

Fires when the ListView has received data from the DataSource and it is already rendered.

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

<div id="listView"></div>
<script>
  $("#listView").kendoListView({
    template: "<div>#: name#</div>",
    dataSource: [
      { name: "John Doe", age: 30 }
    ],
    dataBound: function() {
/* The result can be observed in the DevTools(F12) console of the browser. */
      console.log("ListView is bound.");
    }
  });
</script>
Not finding the help you need?
Contact Support