dataBinding

Fires when the ListView is about to be rendered. The event is used only when virtual (endless scrolling) mode is disabled.

Example

<div data-role="view">
    <ul id="foo"></ul>
</div>

<script>
$("#foo").kendoMobileListView({
   dataSource: new kendo.data.DataSource({
        data: [{title: "foo"}, {title: "bar"}]
   }),

  dataBinding: function(e) {
/* The result can be observed in the DevTools(F12) console of the browser. */
    console.log(e);
  }
});

new kendo.mobile.Application();
</script>
In this article