TabSheetDataSource.loadRanges

Syntax

loadRanges(rangeArray: Array);

Parameters

rangeArray. Array of cell ranges PP.Ui.TabSheetRange, that must be loaded.

Description

The loadRanges method sends a request to get a cell range to the service.

Example

To execute the example, use the example shown in the page with description of the TabSheetDataSource.loadSyncData method, and replace the line

source.loadSyncData([range1, range2]);
 

with the following one:

source.loadRanges([range1, range2]);
 

The example result is the same.

See also:

TabSheetDataSource