init

Fires after the mobile SplitView and its child widgets are initialized.

Example

<div data-role="splitview" data-init="onInit">
  <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 onInit(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