expand

Expands a specified pane. Invoking this method will force the widget to redraw and it will trigger the resize event. Note: Invoking the method will not trigger an expand event.

Parameters

pane String|Element|jQuery

The pane to be expanded.

Example

<div id="splitter">
  <div>Pane A</div>
  <div>Pane B</div>
</div>
<script>
$("#splitter").kendoSplitter({
  panes: [ { collapsed: true }, {} ]
});
var splitter = $("#splitter").data("kendoSplitter");
splitter.expand(".k-pane:first");
</script>
In this article