$(function () { // Set columnDropped event handler function $(".selector").wijgrid({ columnDropped : function (e, args) { } }); });
Parameters
- e
- The jQuery.Event object.
- args
- The data with this event.
$(function () { // Set columnDropped event handler function $(".selector").wijgrid({ columnDropped : function (e, args) { } }); });
// Supply a callback function to handle the columnDropped event: $("#element").wijgrid({ columnDropped: function (e, args) { "The '" + args.drag.headerText + "' column has been dropped onto the '" + args.drop.headerText + "' column at the '" + args.at + "' position" } });