$(function () { // Set selectionChanged event handler function $(".selector").wijgrid({ selectionChanged : function (e, args) { } }); });
Parameters
- e
- The jQuery.Event object.
- args
- The data with this event.
$(function () { // Set selectionChanged event handler function $(".selector").wijgrid({ selectionChanged : function (e, args) { } }); });
// 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()); } });