$(function () { // Set columnDragged event handler function $(".selector").wijgrid({ columnDragged : function (e, args) { } }); });
Parameters
- e
- The jQuery.Event object.
- args
- The data with this event.
$(function () { // Set columnDragged event handler function $(".selector").wijgrid({ columnDragged : function (e, args) { } }); });
// Supply a callback function to handle the columnDragged event: $("#element").wijgrid({ columnDragged: function (e, args) { alert("The '" + args.drag.headerText + "' column is being dragged from the '" + args.dragSource + "' location"); } });