table
Two dimensional array holding the table cell data as displayed (after any grouping and aggregation). If no grouping or summarization is defined on the table, the 'table' property is the same as the 'data' property. The data can be referenced using the row number as the first array index and the column number as the second array index.
Type
two dimensional array
Example
var total = 0;
for(var row = 1; row < table.length; row++) {
for(var col = 0; col < table.size; col++) {
total = total + table[row][col];
}
}
See Also
Accessing Table Data, for information about working with table data.
| << padding | © 1996-2013 InetSoft Technology Corporation (v11.4) | table.length >> |