Search
CellEventArgs Class
Remarks See Also
 






Provides data for the cell related notification events.

Namespace: MindFusion.DataViews
File: EventArgs.js

 Syntax

JavaScript  Copy Code

// class
CellEventArgs.prototype = {}

 Remarks

This class provides data for Grid events that include cellSelected, cellSelecting, cellFocused, cellFocusing, rowUpdated.

 Example

The following code handles the cellSelected event of Grid, which uses the CellEventArgs class to provide event data:

JavaScript  Copy Code
grid.cellSelected.addEventListener(function (sender, args)
{
    document.getElementById("row_index").value = args.row;
});

 Inheritance Hierarchy

MindFusion.DataViews.EventArgs
    MindFusion.DataViews.CellEventArgs
        MindFusion.DataViews.CellCustomDrawEventArgs

 See Also