Specifies data for row action validation events.
Namespace: MindFusion.DataViews
File: EventArgs.js
SyntaxJavaScript
Copy Code
|
|---|
// class |
RemarksEvents that use the RowModifyingEventArgs class to provide event data are rowSelecting, rowCreating, rowDeleting and rowUpdating.
ExampleThe following code handles the rowUpdating event of a Grid instance. The event uses the RowModifyingEventArgs class to provide event data:
JavaScript
Copy Code
|
|---|
grid.rowUpdating.addEventListener(onRowUpdating); function onRowUpdating(sender, args) |
Inheritance HierarchyMindFusion.DataViews.CancelEventArgs![]()
MindFusion.DataViews.RowModifyingEventArgs
MindFusion.DataViews.CommandEventArgs
See Also