rootPane.panes.tabHeader String|Function
Sets the content of the tab when the pane is unpinned or within a tab
pane. If not specified, header
content is used. Available only for panes of type content
.
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: "Other content"
}, {
type: "content",
title: "Unpinned",
tabHeader: "I'm unpinned",
content: "Some unpinned content",
unpinnable: {
unpinned: true
}
}]
}
});
</script>