max

Sets the maximum size of a pane. Setting this value will not cause the widget to redraw, nor will it trigger any events.

Parameters

pane String|Element|jQuery

The pane being targeted for a new minimum size configuration value.

value String

The maximum size value of the pane defined as pixels (i.e. "200px") or as a percentage (i.e. "50%").

Example

<div id="splitter">
  <div id="pane1">Pane A</div>
  <div>Pane B</div>
</div>
<script>
$("#splitter").kendoSplitter();
var splitter = $("#splitter").data("kendoSplitter");
splitter.max("#pane1", "300px");
</script>
In this article