rootPane.panes.visible Boolean
(default: true)
Specifies if the pane is initially visible.
Example
<div style="height:500px; width:1000px">
<div id="dockmanager"></div>
</div>
<script>
$("#dockmanager").kendoDockManager({
rootPane: {
type: "split",
panes: [{
type: "content",
header: "Pane 1",
content: "Pane content"
},{
type: "content",
header: "Pane 2",
content: "Hidden Pane",
visible: false
}, {
type: "content",
header: "Pane 3",
content: "Other content"
}, {
type: "content",
title: "Unpinned",
content: "Some unpinned content",
unpinnable: {
unpinned: true
}
}]
}
});
</script>