wijmo.grid.wijgrid 名前空間 > options タイプ : columnResizing イベント |
Javascript (Usage) | |
---|---|
$(function () { %JQueryMemberName%イベントハンドラ関数を設定する $(".selector").wijgrid({ columnResizing : function (e, args) { } }); }); |
Javascript (Specification) | |
---|---|
columnResizing = function ( e : Object, args : IColumnResizingEventArgs ) { }; |
// "ID"列の幅が100ピクセル未満に設定されないようにします。$("#element").wijgrid({ columnResizing: function (e, args) { if (args.column.dataKey == "ID" && args.newWidth < 100) { args.newWidth = 100; } }});