show

Fires when the mobile SplitView becomes visible.

Example

<div data-role="splitview" data-show="onShow">
  <div data-role="pane">
      <div data-role="view" id="foo">Pane 1 </div>
  </div>
  <div data-role="pane">
      <div data-role="view" id="foo">Pane 2 </div>
  </div>
 </div>

<script>
function onShow(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 jQuery

The mobile SplitView instance

In this article