DataGrid.DeletingRows

Syntax

DeletingRows: function(sender, args);

Parameters

sender. Event source.

args. Information on the event. Arguments: Rows - rows to delete, Cancel - indicates whether row deletion is cancelled in the event handler. If the Cancel argument is set to True, row deletion is cancelled, if the value is False - row deletion is not cancelled.

Description

The DeletingRows event occurs before deleting table rows.

Example

The example of event use is given in description of the DataGrid.deleteRows method.

See also:

DataGrid