GridView.Edited

Syntax

Edited: function (sender, args);

Parameters

sender. Event source.

args. Event information.

Description

The Edited event is fired on editing data in cells of regular report table.

Example

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:

GridView