wijmo.grid.wijgrid Namespace > options type : columnResizing Event |
Javascript (Usage) | |
---|---|
$(function () { // Set columnResizing event handler function $(".selector").wijgrid({ 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; } } });