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

パラメータ

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

関連トピック

参照

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

 

 


Copyright © GrapeCity inc. All rights reserved.