Search
Grid.rowSelected Event
See Also
 






Raised when a row is selected.

Namespace: MindFusion.DataViews
File: Grid.js

 Syntax

JavaScript  Copy Code

EventDispatcher rowSelected

 Event Data

The event handler method receives the following arguments:
sender
A Grid instance, which is the source of the event. This object will be passed to the handler function as the first argument.
args
A RowModifiedEventArgs instance, which contains event data. This object will be passed to the handler function as the second argument.

 Example

The following code uses the rowSelected event of a Grid and the RowModifiedEVentArgs object to get the index of the selected row.

JavaScript  Copy Code

var dv = MindFusion.DataViews;

grid.rowSelected.addEventListener(onRowSelected);

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

 See Also