contentLoad

Triggered when the content for a pane has finished loading.

Event Data

e.pane Element

The pane whose content has been loaded.

Example - subscribe to the "contentLoad" event during initialization

<div id="splitter">
  <div>Pane A</div>
  <div>Pane B</div>
</div>
<script>
$("#splitter").kendoSplitter({
  panes: [ { content: "/foo" }, {} ],
  contentLoad: function(e) {
/* The result can be observed in the DevTools(F12) console of the browser. */
    console.log($(e.pane).html() + " has been loaded");
  }
});
</script>

Example - subscribe to the "contentLoad" event after initialization

<div id="splitter">
  <div>Pane A</div>
  <div>Pane B</div>
</div>
<script>
function splitter_contentLoad(e) {
/* The result can be observed in the DevTools(F12) console of the browser. */
  console.log($(e.pane).html() + " has been loaded");
}
$("#splitter").kendoSplitter({
  panes: [ { content: "/foo" }, {} ]
});
var splitter = $("#splitter").data("kendoSplitter");
splitter.bind("contentLoad", splitter_contentLoad);
</script>
In this article