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 handles the rowUpdating event of a Grid instance. The event handler gets the id of the element that was updated and, if it is bigger than 10, cancels the event.
JavaScript Copy Code |
---|
grid.rowUpdating.addEventListener(onRowUpdating); function onRowUpdating(sender, args) |