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