wijmo.grid.wijgrid Namespace > options type : columnDropped Event |
Javascript (Usage) | |
---|---|
$(function () { // Set columnDropped event handler function $(".selector").wijgrid({ columnDropped : function (e, args) { } }); }); |
Javascript (Specification) | |
---|---|
columnDropped = function ( e : Object, args : IColumnDroppedEventArgs ) { }; |
// 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" } });