Initializes a new instance of the RowModifiedEventArgs class.
Namespace: MindFusion.DataViews
File: EventArgs.js
JavaScript Copy Code |
---|
function RowModifiedEventArgs (row, action, rowData, oldValues, newValues) |
Number. The index of the row that was modified.
One of the RowAction enumeration values that specifies the action that was performed.
Object. The row data.
Map. The dictionary of the original field name/value pairs.
Map. The dictionary of the new 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) |