afterHide

Fired after the mobile Drawer has been hidden.

Example

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

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

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

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