EaxGridView.getChangedData

Syntax

getChangedData();

Description

The getChangedData method returns modified data in the cells of the table shown in the express report working area.

Example

Executing the example requires that the HTML page contains the ExpressBox component named expressBox (see Example of Creating the ExpressBox Component). Get modified data in the table cells:

var changedData = expressBox.getDataView().getGridView().getChangedData();
for(var i = 0; i < changedData.length; i++ ) {
     var obj = changedData[i];
     console.log(obj.L);
}

After executing the example the browser console displays the following text:
1
2
3
4
6
3

See also:

EaxGridView