Defines a row inside a grid. Note, you can put more than one widget into a column by wrapping them into a box.
Note, that in contrast to an HTML table row, a grid row uses only as many columns as you defined using columns
.
Contents
(
widgets |
boxes)+
Appears In
rows
Examples
<row>
<label value="XML Schema File:" /> <!-- first column -->
<text id="schema-file-input" /> <!-- second column -->
</row>
<row>
<label value="Path:" /> <!-- first column -- >
<box> <!-- begin second column -->
<text id="docpath" />
<button label="Browse..." />
</box> <!-- end second column -->
</row>