Search
RowModifiedEventArgs.newValues Property
See Also
 






Gets a dictionary of the new field name/value pairs.

Namespace: MindFusion.DataViews
File: EventArgs.js

 Syntax

JavaScript  Copy Code

get newValues() {}

 Property Value

Map. The dictionary of the new field name/value pairs.

 Example

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)
{
    var employee_name = args.newValues.get("name");
    //do something
}

 See Also