ReportView.PropertyChanged

Syntax

PropertyChanged: function (sender, args);

Parameters

sender. Event source.

args. Event information.

Description

The PropertyChanged event is fired on saving modified report data.

Comments

Modified data is saved on clicking the Save Changes button on the tool ribbon.

Example

To execture this example, the HTML page must contain the ReportBox component named reportBox. Add a handler of the PropertyChanged event:

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

      reportBox.getDataView().showControlBar(false);

})

After executing the example on clicking the Save Changes button the controls panel is hidden.

See also:

ReportView