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

ASPxClientGridViewBatchEditApi.ValidateRow(visibleIndex) Method

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

Declaration

ValidateRow(
    visibleIndex: number
): boolean

Parameters

Name Type Description
visibleIndex number

An integer value specifying the visible index of the validated row.

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