This is an old revision of the document!
GroupBox Control
Properties
| Property | Default Value | Description |
|---|---|---|
| id | empty | id (name) of the script data object associated with control |
| title | empty | groupbox title |
| align | stretched | Alignment of the control |
Example
- groupbox.hejs
var dialog_template = '@<dialog title="GroupBox Test dialog" id="groupbox_dlg"> \ <groupbox title="URL Parameter"> \ <group> \ <paragraph id="label1" text="Name:" style="required" minwidth="7"/> \ <edit id="name" cuebanner="Enter name" required="true" minwidth="10"/> \ </group> \ <group> \ <paragraph id="label2" text="Value:" minwidth="7"/> \ <edit id="value" cuebanner="Enter value" minwidth="10"/> \ </group> \ </groupbox> \ <group uniform="true" align="right"> \ <button title="&OK" returnval="ok" default="true"/> \ <button title="&Cancel" returnval="cancel"/> \ </group> \ </dialog>@'; dialog(dialog_template);
