Edited: function (sender, args);
sender. Event source.
args. Event information.
The Edited event is fired on editing data in cells of regular report table.
To execute this example, the HTML page must contain a data area named dataArea (see Example of the DataArea Component Layout). Add a handler for the Edited event:
dataArea.getGridView().Edited.add(function (sender, args) {
dataArea.getGridView().setIsEditable(false)
});
After editing the table cell other table cells cannot be edited.
See also: