ASPxClientVerticalGrid.BatchEditRecordInserting Event
Occurs on the client side before a record is inserted in batch edit mode.
Declaration
BatchEditRecordInserting: ASPxClientEvent<ASPxClientVerticalGridBatchEditRecordInsertingEventHandler<ASPxClientVerticalGrid>>
Event Data
The BatchEditRecordInserting event's data class is ASPxClientVerticalGridBatchEditRecordInsertingEventArgs. The following properties provide information specific to this event:
Property | Description |
---|---|
cancel | Specifies whether to cancel the related action (for example, row edit, export). Inherited from ASPxClientCancelEventArgs. |
visibleIndex | Gets the processed record’s visible index. |
Remarks
The ASPxVerticalGrid control allows you to modify a batch of grid data on the client side and send it to the server in a single request.
The BatchEditRecordInserting event occurs when an end-user has clicked the New command button. The event argument properties allow you to obtain the processed record by its visible index (visibleIndex). To cancel the current operation, set the event parameter’s cancel property to true
.
See Also