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

ASPxClientGridView.BatchEditRowValidating Event

Enables you to specify whether row data is valid and provide an error text.

Declaration

BatchEditRowValidating: ASPxClientEvent<ASPxClientGridViewBatchEditRowValidatingEventHandler<ASPxClientGridView>>

Event Data

The BatchEditRowValidating event's data class is ASPxClientGridViewBatchEditRowValidatingEventArgs. The following properties provide information specific to this event:

Property Description
key Gets the row’s key.
validationInfo Provides validation information of a row currently being validated.
visibleIndex Gets the processed row’s visible index.

Remarks

The BatchEditRowValidating event is automatically raised when a row is about to be updated, and allows you to specify whether its data is valid. For an invalid row, you can provide an error text.

To manually validate the edited row, call the ASPxClientGridViewBatchEditApi.ValidateRow method.

See Also