DataAreaView.PropertyChanged

Syntax

PropertyChanged: function (sender, args);

Parameters

sender. Event source.

args. Event information.

Description

The PropertyChanged event occurs when changing the report data.

Example

To execute this example, the HTML page must contain the DataArea component named dataArea (see Example of the DataArea Component Layout). Add a handler for the PropertyChanged event:

dataArea.PropertyChanged.add(function (sender, args) {

    dataArea.setActiveSheet(3);

    dataArea.refreshAll();

})

After executing the example, the report sheet with the key three opens on changing data in the report table.

See also:

ReportView