$(function () { // Set columnDragging event handler function $(".selector").wijgrid({ columnDragging : function (e, args) { } }); });
Parameters
- e
- The jQuery.Event object.
- args
- The data with this event.
$(function () { // Set columnDragging event handler function $(".selector").wijgrid({ columnDragging : function (e, args) { } }); });
// Preventing a user from dragging a specific column $("#element").wijgrid({ columnDragging: function (e, args) { return !(args.drag.dataKey == "ID"); } });