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