North"
From Documentation
Tmillsclare (talk | contribs) m |
Jimmyshiau (talk | contribs) |
||
Line 63: | Line 63: | ||
=Supported events= | =Supported events= | ||
− | {| border="1" | + | {| border="1" | width="100%" |
! <center>Name</center> | ! <center>Name</center> | ||
− | ! <center> | + | ! <center>Event Type</center> |
|- | |- | ||
Line 71: | Line 71: | ||
| <javadoc>org.zkoss.zk.ui.event.OpenEvent</javadoc> | | <javadoc>org.zkoss.zk.ui.event.OpenEvent</javadoc> | ||
− | '''Description: '''When a layout is collapsed or opened by a user, the <tt>onOpen</tt> event is sent to the application. | + | <tt>'''Description:''' </tt>When a layout is collapsed or opened by a user, the <tt>onOpen</tt> event is sent to the application. |
|} | |} |
Revision as of 08:37, 18 May 2010
North
- Demonstration: Borderlayout
- Java API: North
- JavaScript API: North
Employment/Purpose
This component is a north region. The default class of CSS is specified "layout-region-north".
Example
<borderlayout height="500px">
<north size="50%" border="0">
<borderlayout>
<west size="25%" border="none" flex="true">
<div style="background:#B8D335">
<label value="25 style=" color:white ; font-size:50px " />
</div>
</west>
<center border="none" flex="true">
<div style="background:#E6D92C">
<label value="25 style=" color:white ; font-size:50px " />
</div>
</center>
<east size="50%" border="none" flex="true">
<label value="Here is a non-borde style=" color:gray ;
font-size:30px " />
</east>
</borderlayout>
</north>
<center border="0">
<borderlayout>
<west size="30%" flex="true" border="0">
<div style="background:#E6D92C">
<label value="30 style=" color:white ; font-size:50px " />
</div>
</west>
<center>
<label value="Here is a borde style=" color:gray ;
font-size:30px " />
</center>
<east size="30%" flex="true" border="0">
<div style="background:#B8D335">
<label value="30 style=" color:white ; font-size:50px " />
</div>
</east>
</borderlayout>
</center>
</borderlayout>
Supported events
OpenEvent
Description: When a layout is collapsed or opened by a user, the onOpen event is sent to the application. |
Supported Children
*ALL
Use cases
Version History
Version | Date | Content |
---|---|---|
5.0.2 | 5/5/2010 | Initialization |