Gets a dictionary of the original field name/value pairs.
Namespace: MindFusion.DataViews
File: EventArgs.js
SyntaxJavaScript
Copy Code
|
|---|
get oldValues() {} |
Map. The dictionary of the original field name/value pairs.
ExampleThe following code uses the oldValues property of the RowModifiedEVentArgs object to get the value of the id column from the deleted row.
JavaScript
Copy Code
|
|---|
var dv = MindFusion.DataViews; grid.rowDeleted.addEventListener(onRowDeleted); function onRowDeleted(sender, args) |
See Also