Search
RowModifiedEventArgs Class
See Also
 






Specifies data for row action notification events.

Namespace: MindFusion.DataViews
File: EventArgs.js

 Syntax

JavaScript  Copy Code

// class
RowModifiedEventArgs.prototype = {}

 Example

The 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)
{
    if(args.action == dv.RowAction.Create)
    {
      //do something
    }
}

 Inheritance Hierarchy

MindFusion.DataViews.EventArgs
    MindFusion.DataViews.RowModifiedEventArgs

 See Also