ASPxClientVerticalGrid.BatchEditRecordValidating Event
Enables you to specify whether record data is valid and provide an error text.
Declaration
BatchEditRecordValidating: ASPxClientEvent<ASPxClientVerticalGridBatchEditRecordValidatingEventHandler<ASPxClientVerticalGrid>>
Event Data
The BatchEditRecordValidating event's data class is ASPxClientVerticalGridBatchEditRecordValidatingEventArgs. The following properties provide information specific to this event:
Property | Description |
---|---|
validationInfo | Provides validation information on the record currently being validated. |
visibleIndex | Gets the processed record’s visible index. |
Remarks
The BatchEditRecordValidating event is automatically raised when a record is about to be updated, and allows you to specify whether its data is valid. For an invalid record, you can provide an error text.
To manually validate the edited record, call the ASPxClientVerticalGridBatchEditApi.ValidateRecord method.
See Also