Gets the row action, that triggered the event.
Namespace: MindFusion.DataViews
File: EventArgs.js
SyntaxJavaScript
Copy Code
|
|---|
get action() {} |
RowAction. One of the RowAction enumeration values.
ExampleThe following code handles the rowCreated event of a grid, where it uses the action property of RowModifiedEVentArgs to identify the RowAction:
JavaScript
Copy Code
|
|---|
var dv = MindFusion.DataViews; grid.rowCreated.addEventListener(onRowCreated); function onRowCreated(sender, args) |
See Also