viewShow

Triggered after the pane displays a view.

Example

<div data-role="splitview">
  <div data-role="pane" data-view-show="viewShown">
      <div data-role="view" id="foo"> <a data-role="button" href="#bar">Bar</a> </div>
      <div data-role="view" id="bar"> <a data-role="button" href="#foo">Foo</a> </div>
    </div>
 </div>

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

Event Data

e.view kendo.mobile.ui.View

The displayed view

In this article