| wijmo.grid.wijgrid 名前空間 > options タイプ : columnDragged イベント |
| Javascript (Usage) | |
|---|---|
$(function () { %JQueryMemberName%イベントハンドラ関数を設定する $(".selector").wijgrid({ columnDragged : function (e, args) { } }); }); | |
| Javascript (Specification) | |
|---|---|
columnDragged = function ( e : Object, args : IColumnDraggedEventArgs ) { }; | |
// columnDraggedイベントを処理するためのコールバック関数を提供します。$("#element").wijgrid({ columnDragged: function (e, args) { alert("The '" + args.drag.headerText + "' column is being dragged from the '" + args.dragSource + "' location"); }});