...
...
...
...
...
...
...
...
...
...
...
...
...
You can also get the number of rows contained in a Table Grid by using the following mapping, this is the same mapping used in the for-iteration declaration:
Code Block | ||
---|---|---|
| ||
// You need to replace TABLE_NAME with your Table Grids' name.
${TableGrid.TABLE_NAMECount} |
Table Columns
In order to obtain the values contained inside a Table Grid, you can use the iteration previously mentioned:
Code Block | ||
---|---|---|
| ||
// You need to replace TABLE_NAME with your Table Grids' name.
#{for n=TableGrid.TABLE_NAMECount}
// Replace the TABLE_NAME with the Table Grids' name and COLUMN_ID with the column id.
${TableGrid.TABLE_NAME[n].COLUMN_ID}
#{end} |
...