These examples shows the syntax of various types of table lists:
Table list (without header line)
Guide word for the Adelia associated list |
TBL_1 |
||
Graphical step |
8 |
||
Column 1 |
Output field |
FIELD_1 |
ALPHA(30) |
Column 2 |
Entry field |
FIELD_2 |
ALPHA(15) |
<table>
<adelia:tablelist name="TBL_1" step="8">
<tr>
<td><adelia:outputfield name="FIELD_1" type="ALPHA" length="30" /></td>
<td><adelia:entryfield type="ALPHA" length="15"><input type="text" name="FIELD_2" maxlength="15" size="15"></adelia:entryfield></td>
</tr>
</adelia:tablelist>
</table>
Table list (with header line)
Guide word for the Adelia associated list |
TBL_1 |
||
Graphical step |
8 |
||
Column 1 |
Output field |
FIELD_1 |
ALPHA(30) |
Column 2 |
Entry field |
FIELD_2 |
ALPHA(15) |
<table>
<tr><td>Column header 1</td><td>Column header 2</td></tr>
<adelia:tablelist name="TBL_1" step="8">
<tr>
<td><adelia:outputfield name="FIELD_1" type="ALPHA" length="30" /></td>
<td><adelia:entryfield type="ALPHA" length="15"><input type="text" name="FIELD_2" maxlength="15" size="15"></adelia:entryfield></td>
</adelia:tablelist>
</tr>
</table>
Back to the table list definition