var instance; // Type: wijmo.grid.IWijgridOptions; var value; // Type: any value = instance.selectionChanged;
var selectionChanged : any;
The selectionChanged event handler is a function that is called after the selection is changed.
var instance; // Type: wijmo.grid.IWijgridOptions; var value; // Type: any value = instance.selectionChanged;
var selectionChanged : any;
// Get the value of the first cell of the selected row. $("#element").wijgrid({ selectionMode: "singleRow", selectionChanged: function (e, args) { alert(args.addedCells.item(0).value()); } });