| wijmo.grid.wijgrid 名前空間 > options タイプ : columnGrouping イベント |
| Javascript (Usage) | |
|---|---|
$(function () { %JQueryMemberName%イベントハンドラ関数を設定する $(".selector").wijgrid({ columnGrouping : function (e, args) { } }); }); | |
| Javascript (Specification) | |
|---|---|
columnGrouping = function ( e : Object, args : IColumnGroupingEventArgs ) { }; | |
// ユーザーが"UnitPrice"列をグループ化できないようにします。$("#element").wijgrid({ columnGrouping: function (e, args) { return !(args.drag.headerText == "UnitPrice"); }});