PropertyChanged: function (sender, args);
sender. Event source.
args. Event information.
The PropertyChanged event is fired on saving modified report data.
Modified data is saved on clicking the Save Changes button on the tool ribbon.
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: