| Form file structure / LAYOUT section | |
The STACK container holds stack items defining a logical alignment of form items.
STACK
{ scalable-item
| container-list
}
END
grouping-item leaf-item [...] END [...]
The STACK container is used to define a stack-based layout.
LAYOUT
STACK
GROUP custinfo (TEXT="Customer info")
EDIT customer.cust_num, TITLE="Num:", NOENTRY;
EDIT customer.cust_name, TITLE="Name:", SCROLL;
...
END
TABLE cust_orders (STYLE="compact_list", DOUBLECLICK=select)
LABEL orders.ord_num, TITLE="Num";
LABEL orders.ord_ship, TITLE="Ship date";
LABEL orders.ord_value, TITLE="Value";
...
END
...
END
END
A stack container can also define a single scalable stack item, such as an IMAGE, TEXTEDIT or WEBCOMPONENT:
STACK IMAGE FORMONLY.picture; END