var instance; // Type: wijmo.grid.IWijgridOptions; var value; // Type: any value = instance.columnDropped;
var columnDropped : any;
The columnDropped event handler is a function that is called when a column has been dropped into the columns area.
var instance; // Type: wijmo.grid.IWijgridOptions; var value; // Type: any value = instance.columnDropped;
var columnDropped : any;
// 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" } });