wijmo.grid.wijgrid Namespace > options type : columnDragged Event |
Javascript (Usage) | |
---|---|
$(function () { // Set columnDragged event handler function $(".selector").wijgrid({ columnDragged : function (e, args) { } }); }); |
Javascript (Specification) | |
---|---|
columnDragged = function ( e : Object, args : IColumnDraggedEventArgs ) { }; |
// Supply a callback function to handle the columnDragged event: $("#element").wijgrid({ columnDragged: function (e, args) { alert("The '" + args.drag.headerText + "' column is being dragged from the '" + args.dragSource + "' location"); } });