wijmo.grid.wijgrid 名前空間 > options タイプ : columnDropping イベント |
Javascript (Usage) | |
---|---|
$(function () { %JQueryMemberName%イベントハンドラ関数を設定する $(".selector").wijgrid({ columnDropping : function (e, args) { } }); }); |
Javascript (Specification) | |
---|---|
columnDropping = function ( e : Object, args : IColumnDroppingEventArgs ) { }; |
// ユーザーが"ID"列の前に列をドロップできないようにします。$("#element").wijgrid({ columnDropping: function (e, args) { return !(args.drop.dataKey == "ID" && args.at == "left"); }});