dock
Triggered when a pane is docked.
Example - subscribing to the dock event during initialization
<div style="height:500px; width:1000px">
<div id="dockmanager"></div>
</div>
<script>
$("#dockmanager").kendoDockManager({
dock: function(e){
// pane is docked
},
rootPane: {
type: "split",
orientation: "vertical",
panes: [{
type: "content",
title: "Pane title",
content: "Pane 1"
},{
type: "content",
title: "Pane 2",
content: "Pane 2"
}]
}
});
</script>
Example - subscribing to the dock event after initialization
<div style="height:500px; width:1000px">
<div id="dockmanager"></div>
</div>
<script>
function pane_dock(e) {
// pane is docked
}
$("#dockmanager").kendoDockManager({
rootPane: {
type: "split",
orientation: "vertical",
panes: [{
type: "content",
title: "Pane title",
content: "Pane 1"
},{
type: "content",
title: "Pane 2",
content: "Pane 2"
}]
}
});
var dockmanager = $("#dockmanager").data("kendoDockManager");
dockmanager.bind("close", pane_dock);
</script>