jQuery.wijmo.wijgrid Namespace > options type : columnResizing Event |
Javascript (Usage) | |
---|---|
var instance; // Type: options instance.columnResizing = function(e, args) { }; |
Javascript (Specification) | |
---|---|
columnResizing = function ( e : Object, args : IColumnResizingEventArgs ) { }; |
// 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; } } });