PrxMdService.setTabSheetData

Syntax

setTabSheetData(report, cells, callback);

Parameters

report. Source report.

cells. Collection of cells.

callback. The callback procedure.

Description

The setTabSheetData method sets the data to the spreadsheet.

Example

The ReportBox component with the ReportBox name and the service to work with the regular report with the PrxMbService name is required on the HTML page to execute an example (see  Example of the ReportBox Component Layout). Create the setData function:

   function setData() {

        prxMbService.setTabSheetData(prxReport, reportBox.getDataView().getGridView().getChangedCells(), null)

        reportBox.refreshAll()

}

Modified data are implemented to the spreadsheet after the function execution.

See also:

PrxMdService