ASPxDataUpdatingEventArgs.NewValues Property
Gets a dictionary that contains the values of the non-key field name/value pairs in the row to be updated.
Namespace: DevExpress.Web.Data
Assembly: DevExpress.Web.v23.1.dll
NuGet Package: DevExpress.Web
Declaration
Property Value
Type | Description |
---|---|
OrderedDictionary | A OrderedDictionary object that contains the values of the non-key field name/value pairs in the row to be updated. |
Remarks
The primary key field is not included in this dictionary. To access the values of the primary key field, use the ASPxDataUpdatingEventArgs.Keys property. To access the original values of the non-key fields in the row, use the ASPxDataUpdatingEventArgs.OldValues property.
Note
To set or get a value for a row, use a field name of a corresponding column.
See Also