hide
Fires when the mobile View becomes hidden.
Example
<div data-role="view" id="foo" data-hide="onHide">
<a href="#bar" data-role="button">Bar</a>
</div>
<div id="bar" data-role="view">
The bar view
</div>
<script>
var app = new kendo.mobile.Application();
function onHide(e) {
/* The result can be observed in the DevTools(F12) console of the browser. */
console.log('foo hidden');
}
</script>
Event Data
e.view kendo.mobile.ui.View
The mobile view instance