var instance; // Type: wijmo.grid.IDetailSettings; var value; // Type: any value = instance.columnDropping;
var columnDropping : any;
The columnDropping event handler is a function that is called when a column is dropped into the columns area, but before wijgrid handles the operation. This event is cancellable.
var instance; // Type: wijmo.grid.IDetailSettings; var value; // Type: any value = instance.columnDropping;
var columnDropping : any;
// Preventing user from dropping any column before the "ID" column. $("#element").wijgrid({ columnDropping: function (e, args) { return !(args.drop.dataKey == "ID" && args.at == "left"); } });