Provides data for the cell related notification events.
Namespace: MindFusion.DataViews
File: EventArgs.js
SyntaxJavaScript
Copy Code
|
|---|
// class |
RemarksThis class provides data for Grid events that include cellSelected, cellSelecting, cellFocused, cellFocusing, rowUpdated.
ExampleThe 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 HierarchyMindFusion.DataViews.EventArgs![]()
MindFusion.DataViews.CellEventArgs
MindFusion.DataViews.CellCustomDrawEventArgs
See Also