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

ASPxClientGridViewBatchEditApi.ValidateRowByKey(key) Method

Performs validation of grid data contained in the specified row when the grid operates in Batch Edit mode.

Declaration

ValidateRowByKey(
    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 data in the specified row data passes validation; otherwise, false.

Remarks

This method allows you to programmatically perform client-side validation of data contained in a specific row.

Note that you can use the ASPxClientGridViewBatchEditApi.ValidateRows method to validate all grid rows.

See Also