EaxGridView.refresh

Syntax

refresh(gridViewTypeUpdate: PP.Exp.Ui.ViewTypeUpdate);

Parameters

gridViewTypeUpdate. Indicates the type of element to be refreshed.

Description

The refresh method refreshes specified elements of the table 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). Refresh statistics panel in the table:

// Get table view
var gridView = expressBox.getDataView().getGridView();
// Refresh statistics panel in the table:
gridView.refresh(PP.Exp.Ui.ViewTypeUpdate.GridStatistics); 

After executing the example the statistics panel in the table of the express report working area is refreshed.

See also:

EaxGridView