hide

Fired when the mobile Drawer is closed by the user.

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


    <div data-role="drawer" id="foo" data-hide="onHide">
        Foo
    </div>

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

    function onHide(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