var instance; // Type: wijmo.grid.IDetailSettings; var value; // Type: any value = instance.columnResizing;
var columnResizing : any;
The columnResizing event handler is called when a user resizes the column but before the wijgrid handles the operation. This event is cancellable.
var instance; // Type: wijmo.grid.IDetailSettings; var value; // Type: any value = instance.columnResizing;
var columnResizing : any;
// Prevent setting the width of "ID" column less than 100 pixels $("#element").wijgrid({ columnResizing: function (e, args) { if (args.column.dataKey == "ID" && args.newWidth < 100) { args.newWidth = 100; } } });