Search
RowModifiedEventArgs.row Property
See Also
 






Gets the index of the row that was modified.

Namespace: MindFusion.DataViews
File: EventArgs.js

 Syntax

JavaScript  Copy Code

get row() {}

 Property Value

Number. The row index.

 Example

The following code uses the row property of the RowModifiedEVentArgs object to get the row that was selected:

JavaScript  Copy Code

var dv = MindFusion.DataViews;

grid.rowSelected.addEventListener(onRowSelected);

function onRowSelected(sender, args)
{
    if( args.row == 0)
   {
     //do something
   }
}

 See Also