Skip to main content
A newer version of this page is available. .

ASPxClientGridViewBatchEditApi.IsDeletedRowByKey(key) Method

Indicates if the row with specified key is deleted.

Declaration

IsDeletedRowByKey(
    key: any
): boolean

Parameters

Name Type Description
key any

A String value that identifies the row by its key value.

Returns

Type Description
boolean

true, if the row is deleted; otherwise, false.

Remarks

In the batch edit mode, the ASPxGridView control allows modifying a batch of grid data on the client side and sending it to the server in one request.

Use the IsDeletedRowByKey method to determine if the row with the specified visible index is deleted on the client side.

See Also