show
Fires when the Drawer is shown.
<div data-role="view" id="drawer-settings">
<h1>Settings</h1>
</div>
<div data-role="drawer" id="foo" data-show="onShow">
Foo
</div>
<script>
new kendo.mobile.Application();
function onShow(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.