init

Fired when the mobile Drawer and its child widgets are initialized.

    <div data-role="view" id="drawer-settings">
        <h1>Settings</h1>
    </div>


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

    <script>
    new kendo.mobile.Application();

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

Event Data

e.sender kendo.mobile.ui.Drawer

The widget instance which fired the event.

In this article