jQuery.wijmo.wijgrid Namespace > options type : selectionChanged Event |
Javascript (Usage) | |
---|---|
var instance; // Type: options instance.selectionChanged = function(e, args) { }; |
Javascript (Specification) | |
---|---|
selectionChanged = function ( e : Object, args : ISelectionChangedEventArgs ) { }; |
// 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()); } });