init

Fires after the mobile View and its child widgets are initialized.

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


    <script>
    var app = new kendo.mobile.Application();

    function init(e) {
    /* The result can be observed in the DevTools(F12) console of the browser. */
        console.log('init');
    }
    </script>

Event Data

e.view kendo.mobile.ui.View

The mobile view instance

In this article