wijmo.grid.wijgrid 名前空間 > options タイプ : allowColSizing オプション |
ユーザーが列ヘッダの端にあるサイズ変更ハンドルをドラッグして列の幅を変更できるかどうかを決定します。
デフォルト値: false
型: Boolean
Javascript (Usage) | |
---|---|
$(function () { //値を取得する var returnsValue; //タイプ: boolean returnsValue = $(".selector").wijgrid("option", "allowColSizing"); //値を設定します var newValue; //タイプ: boolean $(".selector").wijgrid("option", "allowColSizing", newValue); }); |
Javascript (Specification) | |
---|---|
var allowColSizing : boolean; |
このプロパティを true に設定すると、次の図のようなサイズ変更ハンドルが表示されます。
// Adds a sizing handle when the mouse is at a column's edge and allows the user to drag it and resize columns. $("#element").wijgrid({ allowColSizing: true });