dataBound

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.

Example

<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>
In this article