Gets a dictionary of the new field name/value pairs.
Namespace: MindFusion.DataViews
File: EventArgs.js
JavaScript Copy Code |
---|
get newValues() {} |
Map. The dictionary of the new field name/value pairs.
The 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) |