ajaxRequest
(pane, url, data)
// get a reference to the splitter
var splitter = $("#splitter").data("kendoSplitter");
// load content into the pane with ID, pane1
splitter.ajaxRequest("#pane1", "/customer/profile", { id: 42 });
pane
: Selector | DOM Element
url
: String
data
: Object | String
collapse
(pane)
// get a reference to the splitter
var splitter = $("#splitter").data("kendoSplitter");
// collapse the pane with ID, pane1
splitter.collapse("#pane1");
pane
: Selector | DOM Element
expand
(pane)
// get a reference to the splitter
var splitter = $("#splitter").data("kendoSplitter");
// expand the pane with ID, pane1
splitter.expand("#pane1");
pane
: Selector | DOM Element
max
(pane, value)
// get a reference to the splitter
var splitter = $("#splitter").data("kendoSplitter");
// set the maximum size of the pane with ID, pane1
splitter.max("#pane1", "300px");
pane
: Selector | DOM Element
value
: String
min
(pane, value)
// get a reference to the splitter
var splitter = $("#splitter").data("kendoSplitter");
// set the minimum size of the pane with ID, pane1
splitter.min("#pane1", "100px");
pane
: Selector | DOM Element
value
: String
size
(pane, value)
// get a reference to the splitter
var splitter = $("#splitter").data("kendoSplitter");
// set the size of the pane with ID, pane1
splitter.size("#pane1", "200px");
pane
: Selector | DOM Element
value
: String
toggle
(pane, expand)
// get a reference to the splitter
var splitter = $("#splitter").data("kendoSplitter");
// toggle the state of the pane with ID, pane1
splitter.toggle("#pane1");
// toggle the state of the pane with ID, pane1 to be expanded
splitter.toggle("#pane1", true);
// toggle the state of the pane with ID, pane1 to be collapsed
splitter.toggle("#pane1", false);
pane
: Selector | DOM Element
expand
: Boolean