Gets a dictionary of the original field name/value pairs.
Namespace: MindFusion.DataViews
File: EventArgs.js
SyntaxJavaScript
Copy Code
|
|---|
get oldValues() {} |
Map. The dictionary of the original field name/value pairs.
ExampleThe following code handles the rowDeleting event of a Grid instance. The event handler gets the id of the element to be deleted and, if it is bigger than 10, cancels the event.
JavaScript
Copy Code
|
|---|
grid.rowDeleting.addEventListener(onRowDeleting); function onRowDeleting(sender, args) |
See Also