wijmo.grid.wijgrid Namespace > options type : selectionChanged Event |
Javascript (Usage) | |
---|---|
$(function () { // Set selectionChanged event handler function $(".selector").wijgrid({ 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()); } });