Tabpanels

From Documentation
Revision as of 02:12, 21 April 2010 by SimonPai (talk | contribs) (Created page with '{{ZKComponentReferencePageHeader}} =Tabpanels = *Demonstration: [http://www.zkoss.org/zkdemo/userguide/#l10 Tabpanels] *Java API: <javadoc>org.zkoss.zul.Tabpanels</javadoc> *Ja…')
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Tabpanels

Employment/Purpose

A tabpanels is the container for the tab panels, i.e., a collection of tabpanel components.

Example

File:ZKComRef Containers Tabpanels.PNG

<zk>
	<tabbox width="400px">
		<tabs>
			<tab label="Tab 1" />
			<tab label="Tab 2" />
		</tabs>
		<tabpanels>
			<tabpanel>This is panel 1</tabpanel>
			<tabpanel>This is panel 2</tabpanel>
		</tabpanels>
	</tabbox>
	<space />
	<tabbox width="400px" mold="accordion">
		<tabs>
			<tab label="Tab 3" />
			<tab label="Tab 4" />
		</tabs>
		<tabpanels>
			<tabpanel>This is panel 3</tabpanel>
			<tabpanel>This is panel 4</tabpanel>
		</tabpanels>
	</tabbox>
</zk>

Supported events

*NONE

Supported Children

Tabpanel

Use cases

Tabbox

Version History

Version Date Content
5.0.1 4/21/2010 Initialization



Last Update : 2010/04/21

Copyright © Potix Corporation. This article is licensed under GNU Free Documentation License.