Tab"

From Documentation
(Created page with '{{ZKComponentReferencePageHeader}} = Tab = *Demonstration: [http://www.zkoss.org/zkdemo/userguide/#l10 Tab] *Java API: <javadoc>org.zkoss.zul.Tab</javadoc> *JavaScript API: <ja…')
 
Line 15: Line 15:
 
= Example =
 
= Example =
  
[[Image:ZKComRef_Containers_Tabs.PNG]]  
+
[[Image:ZKComRef_Containers_Tab.PNG]]  
  
 
<source lang="xml" >
 
<source lang="xml" >

Revision as of 01:40, 21 April 2010

Tab

  • Demonstration: Tab
  • Java API: Tab
  • JavaScript API: Tab

Employment/Purpose

A specific tab. Clicking on the tab brings the tab panel to the front. You could put a label and an image on it by label and image properties.

By setting the closable property to true, a close button is shown for the tab, such that user could close the tab and the corresponding tab panel by clicking the button. Once user clicks on the close button, an onClose event is sent to the tab. It is processed by the onClose method of Tab. Then, onClose, by default, detaches the tab itself and the corresponding tab panel.

Example

ZKComRef Containers Tab.PNG

<tabbox width="400px">
	<tabs>
		<tab label="Tab 1" image="/img/folder.gif" />
		<tab label="Tab 2" image="/img/folder.gif" closable="true" />
	</tabs>
	<tabpanels>
		<tabpanel>This is panel 1</tabpanel>
		<tabpanel>This is panel 2</tabpanel>
	</tabpanels>
</tabbox>

Supported events

Name
Event Type
onClick
MouseEvent

Description:

Denotes user has clicked the component.

onRightClick
MouseEvent

Description:

Denotes user has right-clicked the component.

onDoubleClick
MouseEvent

Description:

Denotes user has double-clicked the component.

onSelect
SelectEvent

Description:

Denotes user has selected a tab. onSelect is sent to both tab and tabbox.

onClose
Event

Description:

Denotes the close button is pressed by a user, and the component shall detach itself.

Supported Children

*NONE

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.