TableChildren"
From Documentation
Tmillsclare (talk | contribs) m (Created page with 'init') |
m |
||
Line 1: | Line 1: | ||
− | + | {{ZKComponentReferencePageHeader}} | |
+ | |||
+ | = TableChildren = | ||
+ | |||
+ | *Demonstration: N/A or link | ||
+ | *Java API: <javadoc>org.zkoss.zkmax.zul.TableChildren</javadoc> | ||
+ | *JavaScript API: <javadoc directory="jsdoc">zkmax.layout.TableChildren</javadoc> | ||
+ | |||
+ | = Employment/Purpose = | ||
+ | |||
+ | The cell of Tablelayout. The child component of Tablechildren only can be Panel. | ||
+ | |||
+ | |||
+ | = Example = | ||
+ | |||
+ | |||
+ | [[Image:Tablelayout.PNG]] | ||
+ | |||
+ | |||
+ | <source lang="xml" > | ||
+ | <?xml version="1.0" encoding="UTF-8"?> | ||
+ | |||
+ | <?component name="panel" extends="panel" width="200px" height="200px" ?> | ||
+ | |||
+ | <zk> | ||
+ | <label value="3 columns, 1 colspan, 1 rowspan" /> | ||
+ | <tablelayout id="tbl" columns="3"> | ||
+ | <tablechildren id="tc1" colspan="2"> | ||
+ | <panel title="table1" border="normal" maximizable="true" | ||
+ | collapsible="true"> | ||
+ | <panelchildren>Panel</panelchildren> | ||
+ | </panel> | ||
+ | </tablechildren> | ||
+ | <tablechildren> | ||
+ | <panel title="table2" border="norma maximizable=" true " | ||
+ | collapsible="true"> | ||
+ | <panelchildren>Panel</panelchildren> | ||
+ | </panel> | ||
+ | </tablechildren> | ||
+ | </tablelayout> | ||
+ | </zk> | ||
+ | </source> | ||
+ | |||
+ | |||
+ | |||
+ | =Supported events= | ||
+ | |||
+ | {| border="1" | width="100%" | ||
+ | ! <center>Name</center> | ||
+ | ! <center>Event Type</center> | ||
+ | |- | ||
+ | | None | ||
+ | | None | ||
+ | |} | ||
+ | |||
+ | =Supported Children= | ||
+ | |||
+ | *NONE | ||
+ | |||
+ | =Use cases= | ||
+ | |||
+ | {| border='1px' | width="100%" | ||
+ | ! Version !! Description !! Example Location | ||
+ | |- | ||
+ | | | ||
+ | | | ||
+ | | | ||
+ | |} | ||
+ | |||
+ | =Version History= | ||
+ | |||
+ | {| border='1px' | width="100%" | ||
+ | ! Version !! Date !! Content | ||
+ | |- | ||
+ | | 5.0.2 | ||
+ | | 5/19/2010 | ||
+ | | Initialization | ||
+ | |} | ||
+ | |||
+ | {{ZKComponentReferencePageFooter}} |
Revision as of 11:09, 19 May 2010
TableChildren
- Demonstration: N/A or link
- Java API: TableChildren
- JavaScript API: TableChildren
Employment/Purpose
The cell of Tablelayout. The child component of Tablechildren only can be Panel.
Example
<?xml version="1.0" encoding="UTF-8"?>
<?component name="panel" extends="panel" width="200px" height="200px" ?>
<zk>
<label value="3 columns, 1 colspan, 1 rowspan" />
<tablelayout id="tbl" columns="3">
<tablechildren id="tc1" colspan="2">
<panel title="table1" border="normal" maximizable="true"
collapsible="true">
<panelchildren>Panel</panelchildren>
</panel>
</tablechildren>
<tablechildren>
<panel title="table2" border="norma maximizable=" true "
collapsible="true">
<panelchildren>Panel</panelchildren>
</panel>
</tablechildren>
</tablelayout>
</zk>
Supported events
None | None |
Supported Children
*NONE
Use cases
Version | Description | Example Location |
---|---|---|
Version History
Version | Date | Content |
---|---|---|
5.0.2 | 5/19/2010 | Initialization |