Wijmo UI for the Web
columnGrouping イベント
jQuery.Event オブジェクト。
このイベントに関連付けられたデータ。
columnGrouping イベントハンドラは、列がグループ領域にドロップされたとき、wijgrid がその操作を処理する前に呼び出される関数です。このイベントはキャンセルできます。
シンタックス
Javascript (Usage) 
$(function () {
    %JQueryMemberName%イベントハンドラ関数を設定する 
    $(".selector").wijgrid({ 
        columnGrouping : function (e, args) { 
     
        } 
    });
});
Javascript (Specification) 
columnGrouping = function ( 
   e : Object,
   args : IColumnGroupingEventArgs
) { };

パラメータ

e
jQuery.Event オブジェクト。
args
このイベントに関連付けられたデータ。
使用例
// ユーザーが"UnitPrice"列をグループ化できないようにします。$("#element").wijgrid({ columnGrouping: function (e, args) { return !(args.drag.headerText == "UnitPrice"); }});
解説
イベントには、型と名前のいずれかで連結できます。名前でイベントに連結する場合。$("#element").wijgrid({ columnGrouping: function (e, args) {// ここにコードを記述します。}});型でイベントに連結する場合。$("#element").bind("wijgridcolumngrouping", function (e, args) {// ここにコードを記述します。});

関連トピック

参照

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

 

 


Copyright © GrapeCity inc. All rights reserved.