Vbox"

From Documentation
m
m
Line 1: Line 1:
<javadoc method="getThemeURIs(            org.zkoss.zk.ui.Execution,              java.util.List)">org.zkoss.zk.ui.util.ThemeProvider</javadoc>
+
{{ZKComponentReferencePageHeader}}
 +
 
 +
= Hbox =
 +
 
 +
*Demonstration: N/A
 +
*Java API: <javadoc>org.zkoss.zul.Vbox</javadoc>
 +
*JavaScript API: <javadoc directory="jsdoc">zul.box.Box</javadoc>
 +
 
 +
= Employment/Purpose =
 +
 
 +
The vbox component is used to create a vertically oriented box. Added components will be placed underneath each other in a column.
 +
 
 +
= Example =
 +
 
 +
[[Image:ZKComRef_Vbox_Simple_Example.PNG]]
 +
 
 +
<source lang="xml" >
 +
<zk>
 +
    <vbox>
 +
        <button label="Button 1"/>
 +
        <button label="Button 2"/>
 +
    </vbox>
 +
    <hbox>
 +
        <button label="Button 3"/>
 +
        <button label="Button 4"/>
 +
    </hbox>
 +
</zk>
 +
</source>
 +
 
 +
=Supported events=
 +
 
 +
{| border="1" | width="100%"
 +
! <center>Name</center>
 +
! <center>Event Type</center>
 +
|-
 +
| None
 +
| None
 +
|}
 +
 
 +
=Supported Children=
 +
 
 +
*ALL
 +
 
 +
=Use cases=
 +
 
 +
{| border='1px' | width="100%"
 +
! Version !! Description !! Example Location
 +
|-
 +
| &nbsp;
 +
| &nbsp;
 +
| &nbsp;
 +
|}
 +
 
 +
=Version History=
 +
 
 +
{| border='1px' | width="100%"
 +
! Version !! Date !! Content
 +
|-
 +
| 5.0.2
 +
| 4/23/2010
 +
| Initialization
 +
|}
 +
 
 +
{{ZKComponentReferencePageFooter}}

Revision as of 02:33, 17 May 2010

Hbox

  • Demonstration: N/A
  • Java API: Vbox
  • JavaScript API: Box

Employment/Purpose

The vbox component is used to create a vertically oriented box. Added components will be placed underneath each other in a column.

Example

ZKComRef Vbox Simple Example.PNG

<zk>
     <vbox>
         <button label="Button 1"/>
         <button label="Button 2"/>
     </vbox>
     <hbox>
         <button label="Button 3"/>
         <button label="Button 4"/>
     </hbox>
</zk>

Supported events

Name
Event Type
None None

Supported Children

*ALL

Use cases

Version Description Example Location
     

Version History

Version Date Content
5.0.2 4/23/2010 Initialization



Last Update : 2010/05/17

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