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

ASPxVerticalGrid.RecordInserted Event

Fires after a new record has been added to the ASPxVerticalGrid.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v18.2.dll

Declaration

public event ASPxDataInsertedEventHandler RecordInserted

Event Data

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

Property Description
AffectedRecords Gets the number of records affected by the update operation. Inherited from ASPxDataBaseUpdatedEventArgs.
Exception Gets the exception (if any) that was raised during the update operation. Inherited from ASPxDataBaseUpdatedEventArgs.
ExceptionHandled Gets or sets whether an exception raised during the update operation was handled in the event handler. Inherited from ASPxDataBaseUpdatedEventArgs.
NewValues Gets a dictionary that contains the values of the non-key field name/value pairs in the row to be inserted.

Remarks

End-users can create new records by clicking the New command. To save the newly created record, end-users must click the Update command. To create records in code, use the ASPxClientVerticalGrid.AddNewRecord method.

To cancel the insert operation, handle the ASPxVerticalGrid.RecordInserting event.

Note

The RecordInserted event fires even though an exception occurs during the data update operation. Use the ASPxDataBaseUpdatedEventArgs.Exception and ASPxDataBaseUpdatedEventArgs.ExceptionHandled argument properties to determine whether or not any exception occurs during the corresponding action, and handle it if you wish.

See Also