EaxMdService.saveTableData

Syntax

saveTableData(report, metadata, saveData, callback);

Parameters

report. Express report, data of which is to be saved.

metadata. Metadata.

saveData. Indicates that the express report data must be saved.

callback. Callback function.

Description

The saveTableData method saves data of express report table.

Example

Executing the example requires that the HTML page contains the ExpressBox component named expressBox (see Example of Creating the ExpressBox Component) and have a loaded table in express report working area. Add the value 102 to any cell of this table (unsaved value will be shown in bold font):

Then save the changes:

// Get service for working with express report
var eaxMdService = expressBox.getService();
// Get express report document
var eaxAnalyzer = expressBox.getSource();
// Save data of express report table
eaxMdService.saveTableData(eaxAnalyzer, null, !0);

After executing the example the entered value is saved:

See also:

EaxMdService