dataBound

Fires when the ListView has received data from the DataSource. The event is used only when virtual (endless scrolling) mode is disabled.

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


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

      dataBound: 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