Wijmo UI for the Web
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 });
解説
この機能の動作は「列のリサイズ」のサンプルで確認できます。

関連トピック

参照

options タイプ
wijgrid jQuery ウィジェット

 

 


Copyright © GrapeCity inc. All rights reserved.