Wijmo UI for the Web
columnResized イベント
jQuery.Event オブジェクト。
このイベントに関連付けられたデータ。
columnResized イベントハンドラは、ユーザーが列のサイズを変更したときに呼び出されます。
シンタックス
Javascript (Usage) 
$(function () {
    %JQueryMemberName%イベントハンドラ関数を設定する 
    $(".selector").wijgrid({ 
        columnResized : function (e, args) { 
     
        } 
    });
});
Javascript (Specification) 
columnResized = function ( 
   e : Object,
   args : IColumnResizedEventArgs
) { };

パラメータ

e
jQuery.Event オブジェクト。
args
このイベントに関連付けられたデータ。
使用例
// columnGroupedイベントを処理するためのコールバック関数を提供します。$("#element").wijgrid({ columnResized: function (e, args) { alert("The '" + args.column.headerText + "' has been resized"); }});
解説
イベントには、型と名前のいずれかで連結できます。名前でイベントに連結する場合。$("#element").wijgrid({ columnResized: function (e, args) {// ここにコードを記述します。}});型でイベントに連結する場合。$("#element").bind("wijgridcolumnresized", function (e, args) {// ここにコードを記述します。});

関連トピック

参照

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

 

 


Copyright © GrapeCity inc. All rights reserved.