PropertyChanged: function (sender, args);
sender. Event source.
args. Event information.
The PropertyChanged event occurs when changing the report data.
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: