To insert a child component in a rowLayout:
The child component is inserted and highlighted under the rowLayout node. In the UIX Visual Editor, the child component is placed in a cell of the row.
Children components are placed consecutively in individual cells. Each cell contains only one child.
...
<pageLayout>
<!-- Insert rowLayout child components -->
<contents>
<header text="Here is a table with two rows">
<tableLayout width="75%"
borderWidth="3"
cellSpacing="10"
hAlign="center">
<contents>
<rowLayout hAlign=right">
<contents>
First Column
<cellFormat vAlign="bottom">
<contents>
Second Column
</contents>
</cellFormat>
<flowLayout>
<contents>
Third Column
<spacer height="100" width="1"/>
</contents>
</flowLayout>
</contents>
</rowLayout>
<rowLayout>
<contents>
<header text="Second Row First Column"/>
<cellFormat columnSpan="2">
<contents>
<header text="Column Span Two"/>
</contents>
</cellFormat>
</contents>
</rowLayout>
</contents>
</tableLayout>
</header>
</contents>
<!-- REST OF PAGE LAYOUT -->
</pageLayout>
...
About TableLayout
About RowLayout
About CellFormat
Creating a Row Using RowLayout
Inserting a Table Using TableLayout and RowLayout
Using CellFormat Around RowLayout Child Components
Working with Layout Components
Copyright © 1997, 2004, Oracle. All rights reserved.