ASPxVerticalGrid.RecordInserted Event
Fires after a new record has been added to the ASPxVerticalGrid.
Namespace: DevExpress.Web
Assembly: DevExpress.Web.v24.2.dll
NuGet Package: DevExpress.Web
#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 |
---|---|
Affected |
Gets the number of records affected by the update operation.
Inherited from ASPx |
Exception |
Gets the exception (if any) that was raised during the update operation.
Inherited from ASPx |
Exception |
Gets or sets whether an exception raised during the update operation was handled in the event handler.
Inherited from ASPx |
New |
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 Record