East"
From Documentation
m ((via JWB)) |
|||
Line 96: | Line 96: | ||
== Slidable == | == Slidable == | ||
− | Whether users can slide (preview) the region when | + | {{versionSince| 8.5.2}} |
+ | |||
+ | Whether users can slide (preview) the region when clicking on the title of the collapsed region. It opens the region like a drawer overlapping on the <code><center></code>. Require <code>collapsible="true"</code>. | ||
Default: true. | Default: true. | ||
− | + | [[File:Slidable.gif|center]] | |
=Supported Events= | =Supported Events= |
Revision as of 07:59, 10 January 2023
East
- Demonstration: Borderlayout
- Java API: East
- JavaScript API: East
- Style Guide: East
Employment/Purpose
An east region of a border layout and only allows one component as its child.
Example
<borderlayout height="450px">
<north title="North" maxsize="300" size="50%" splittable="true" collapsible="true">
<borderlayout>
<west title="West" size="25%" flex="true" maxsize="250" splittable="true" collapsible="true">
<div style="background:#B8D335">
<label value="25%"
style="color:white;font-size:50px" />
</div>
</west>
<center border="none">
<div style="background:#E6D92C" vflex="1">
<label value="25%"
style="color:white;font-size:50px" />
</div>
</center>
<east size="50%" border="none">
<label value="Here is a non-border"
style="color:gray;font-size:30px" />
</east>
</borderlayout>
</north>
<center border="0">
<borderlayout>
<west maxsize="600" size="30%" border="0" splittable="true">
<div style="background:#E6D92C" vflex="1">
<label value="30%"
style="color:white;font-size:50px" />
</div>
</west>
<center>
<label value="Here is a border"
style="color:gray;font-size:30px" />
</center>
<east title="East" size="30%" collapsible="true">
<div style="background:#B8D335" vflex="1">
<label value="30%"
style="color:white;font-size:50px" />
</div>
</east>
</borderlayout>
</center>
</borderlayout>
How to Layout
For more details, please refer to Borderlayout.
Properties and Features
Caption
A layout region might have a caption, which is specified by declaring a child component called caption.
- Available for ZK:
Since 6.5.0
<borderlayout>
<east>
<caption label="search" image="/img/live.gif">
<combobox>
<comboitem label="item 1" />
<comboitem label="item 2" />
<comboitem label="item 3" />
<comboitem label="item 4" />
</combobox>
</caption>
<div>
Content
</div>
</east>
</borderlayout>
Closable
Whether users can open or close the region. Require collapsible="true"
.
Default: true.
Since 8.5.2
Slidable
Since 8.5.2
Whether users can slide (preview) the region when clicking on the title of the collapsed region. It opens the region like a drawer overlapping on the <center>
. Require collapsible="true"
.
Default: true.
Supported Events
None | None |
- Inherited Supported Events: LayoutRegion
Supported Children
*ALL
Use Cases
Version History
Version | Date | Content |
---|---|---|
6.5.0 | June 2012 | ZK-969: The LayoutRegion component support caption component as it's title |
8.5.2 | May 2018 | ZK-3329: Collapsible Borderlayout region in slide or open mode only |