hbox

Purpose

The hbox component is used to create a horizontally oriented box. Each component placed in the hbox will be placed horizontally in a row.Notice that hbox and vbox are designed to provode more sophisticated layout, such as splitter, alignment and packing. If you need only the layout feature, it is suggest to use Hlayout and Vlayout instead, since the performance is much better (due to the use of HTML DIV instead of TABLE).

Examples

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

Description

Attributes

ZK Official Reference

Component Reference

Show hbox Component Reference

Java API

Show hbox Java API