EaxAnalyzer.TableChangedData

Syntax

TableChangedData: Object

Description

The TableChangedData property contains changed data of the express report view named Table.

Comments

Use JSON or the setTableChangedData method to set the property value, and the getTableChangedData method to get the property value.

The property contains a value as a JSON object.

Example

Executing the example requires that the HTML page contains the ExpressBox component named expressBox (see Example of Creating the ExpressBox Component). Enter the value 12 to a random cell of the express report table, and next determine coordinates of this cell:

var eaxAnalyzer = expressBox.getSource();
// Get modified data of the express report table
var changedData = eaxAnalyzer.getTableChangedData();
// Show data on the changes
console.log(JSON.stringify(changedData.c[0]));

After executing the example the browser console displays information on changes made in data of the express report table:

{"@column":8,"@row":6,"@v":"12","@dt":3}


Thus, the value 12 is entered into the cell at the intersection of the sixth row and eighth column.

See also:

EaxAnalyzer