jQuery.wijmo.wijgrid Namespace > options type : columnDropped Event |
Javascript (Usage) | |
---|---|
var instance; // Type: options instance.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" } });