<kendo:dockManager-rootPane-pane>

An array of pane definitions.

Example

<kendo:dockManager-rootPane-panes>
    <kendo:dockManager-rootPane-pane></kendo:dockManager-rootPane-pane>
</kendo:dockManager-rootPane-panes>

Configuration Attributes

closeable boolean

Specifies if the pane can be closed. Available only for panes of type content.

Example

<kendo:dockManager-rootPane-pane closeable="closeable">
</kendo:dockManager-rootPane-pane>

content java.lang.String

The content of the pane. Available only for panes of type content.

Example

<kendo:dockManager-rootPane-pane content="content">
</kendo:dockManager-rootPane-pane>

dockable boolean

Specifies if the pane can be docked and allow inner docking of other panes. Accepts boolean or object. Available only for panes of type content. Further configuration is available via kendo:dockManager-rootPane-pane-dockable.

Example

<kendo:dockManager-rootPane-pane dockable="dockable">
</kendo:dockManager-rootPane-pane>

Sets the content of the header. Accepts a string or a kendo template. By default, the same content is displayed in the tab when the pane is unpinned or within a pane of type tab. If not specified the title is displayed. Available only for panes of type content.

Example

<kendo:dockManager-rootPane-pane header="header">
</kendo:dockManager-rootPane-pane>

id java.lang.String

Defines the id of the pane

Example

<kendo:dockManager-rootPane-pane id="id">
</kendo:dockManager-rootPane-pane>

orientation java.lang.String

Sets the orientation of the pane splitter.

Example

<kendo:dockManager-rootPane-pane orientation="orientation">
</kendo:dockManager-rootPane-pane>

panes java.lang.Object

Specifies an array of pane definitions.

Example

<kendo:dockManager-rootPane-pane panes="panes">
</kendo:dockManager-rootPane-pane>

selected float

Specifies the index of the initially selected tab. Available only for panes of type tab.

Example

<kendo:dockManager-rootPane-pane selected="selected">
</kendo:dockManager-rootPane-pane>

size java.lang.String

Specifies the size of a pane defined as pixels (i.e. "200px") or as a percentage (i.e. "50%").

Example

<kendo:dockManager-rootPane-pane size="size">
</kendo:dockManager-rootPane-pane>

tabHeader java.lang.String

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

<kendo:dockManager-rootPane-pane tabHeader="tabHeader">
</kendo:dockManager-rootPane-pane>

title java.lang.String

Sets the title of the pane. Available only for panes of type content.

Example

<kendo:dockManager-rootPane-pane title="title">
</kendo:dockManager-rootPane-pane>

type java.lang.String

Sets the type of the pane.

Example

<kendo:dockManager-rootPane-pane type="type">
</kendo:dockManager-rootPane-pane>

unpinnable boolean

Specifies if the pane can be pinned/unpinnned. Available only for panes of type content. Further configuration is available via kendo:dockManager-rootPane-pane-unpinnable.

Example

<kendo:dockManager-rootPane-pane unpinnable="unpinnable">
</kendo:dockManager-rootPane-pane>

visible boolean

Specifies if the pane is initially visible.

Example

<kendo:dockManager-rootPane-pane visible="visible">
</kendo:dockManager-rootPane-pane>

Configuration JSP Tags

kendo:dockManager-rootPane-pane-dockable

Specifies if the pane can be docked and allow inner docking of other panes. Accepts boolean or object. Available only for panes of type content.

More documentation is available at kendo:dockManager-rootPane-pane-dockable.

Example

<kendo:dockManager-rootPane-pane>
    <kendo:dockManager-rootPane-pane-dockable></kendo:dockManager-rootPane-pane-dockable>
</kendo:dockManager-rootPane-pane>

kendo:dockManager-rootPane-pane-unpinnable

Specifies if the pane can be pinned/unpinnned. Available only for panes of type content.

More documentation is available at kendo:dockManager-rootPane-pane-unpinnable.

Example

<kendo:dockManager-rootPane-pane>
    <kendo:dockManager-rootPane-pane-unpinnable></kendo:dockManager-rootPane-pane-unpinnable>
</kendo:dockManager-rootPane-pane>

Event Attributes

content String

The content of the pane. Available only for panes of type content.

Example

<kendo:dockManager-rootPane-pane content="handle_content">
</kendo:dockManager-rootPane-pane>
<script>
    function handle_content(e) {
        // Code to handle the content event.
    }
</script>

Sets the content of the header. Accepts a string or a kendo template. By default, the same content is displayed in the tab when the pane is unpinned or within a pane of type tab. If not specified the title is displayed. Available only for panes of type content.

Example

<kendo:dockManager-rootPane-pane header="handle_header">
</kendo:dockManager-rootPane-pane>
<script>
    function handle_header(e) {
        // Code to handle the header event.
    }
</script>

tabHeader String

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

<kendo:dockManager-rootPane-pane tabHeader="handle_tabHeader">
</kendo:dockManager-rootPane-pane>
<script>
    function handle_tabHeader(e) {
        // Code to handle the tabHeader event.
    }
</script>

Event Tags

kendo:dockManager-rootPane-pane-content

The content of the pane. Available only for panes of type content.

Example

<kendo:dockManager-rootPane-pane>
    <kendo:dockManager-rootPane-pane-content>
        <script>
            function(e) {
                // Code to handle the content event.
            }
        </script>
    </kendo:dockManager-rootPane-pane-content>
</kendo:dockManager-rootPane-pane>

kendo:dockManager-rootPane-pane-header

Sets the content of the header. Accepts a string or a kendo template. By default, the same content is displayed in the tab when the pane is unpinned or within a pane of type tab. If not specified the title is displayed. Available only for panes of type content.

Example

<kendo:dockManager-rootPane-pane>
    <kendo:dockManager-rootPane-pane-header>
        <script>
            function(e) {
                // Code to handle the header event.
            }
        </script>
    </kendo:dockManager-rootPane-pane-header>
</kendo:dockManager-rootPane-pane>

kendo:dockManager-rootPane-pane-tabHeader

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

<kendo:dockManager-rootPane-pane>
    <kendo:dockManager-rootPane-pane-tabHeader>
        <script>
            function(e) {
                // Code to handle the tabHeader event.
            }
        </script>
    </kendo:dockManager-rootPane-pane-tabHeader>
</kendo:dockManager-rootPane-pane>
In this article
Not finding the help you need?