ajaxRequest
Loads the content of a pane from a local or remote URL.
Parameters
pane String|Element|jQuery
The targeted pane whose content is to be loaded via a URL.
url String
A local or remote URL from which the content of the pane is to be loaded.
data Object | String
Any data that is necessary to be sent to the server.
Example
<base href="https://demos.telerik.com/kendo-ui/panelbar/ajax" />
<div id="splitter">
<div id="pane1">Pane A</div>
<div>Pane B</div>
</div>
<script>
$("#splitter").kendoSplitter();
var splitter = $("#splitter").data("kendoSplitter");
// load a complete page in the last pane
splitter.ajaxRequest(".k-pane:last", "../content/web/panelbar/ajax/ajaxContent1.html");
// example of loading content into the pane with ID="pane1"
//splitter.ajaxRequest("#pane1", "/customer/profile", { id: 42 });
</script>
In this article