rootPane.panes.id String
Defines the id of the pane
Example
<div style="height:500px; width:1000px">
<div id="dockmanager"></div>
</div>
<script>
$("#dockmanager").kendoDockManager({
rootPane: {
type: "split",
panes: [{
type: "content",
title: "Pane 1",
content: "Pane 1",
id: "myFirstPane"
},{
type: "content",
title: "Pane 2",
content: "Pane 2",
id: "mySecondPane"
}]
}
});
</script>