data
Affects the original table data. If no grouping or other summarization is defined for this section element, this object is the same as the 'table' property. Otherwise, it holds the original data of the table, while 'table' contains the summarized data. This is a two dimensional array holding the table cell data. To reference the data use the row number as the first array index and column number as the second array index.
Type
two dimensional array
Example
for(var row = 0; row < data.length; row++) {
for(var col = 0; col < data[row].length; col++) {
...
}
}
| << table | © 1996-2013 InetSoft Technology Corporation (v11.5) | query >> |