groupbox

Purpose

A group box is used to group components together. A border is typically drawn around the components to show that they are related. The label across the top of the group box can be created by using Caption component. It works much like the HTML legend element. Unlike Window, a group box is not an owner of the ID space. It cannot be overlapped or popup.

Examples

<z:groupbox width="250px">
    <z:caption label="Fruits"/>
    <z:radiogroup>
        <z:radio label="Apple"/>
        <z:radio label="Orange"/>
        <z:radio label="Banana"/>
    </z:radiogroup>
</z:groupbox>

Description

Attributes

ZK Official Reference

Component Reference

Show groupbox Component Reference

Java API

Show groupbox Java API