jQuery.wijmo.wijgrid Namespace > options type : columnDragged Event |
Javascript (Usage) | |
---|---|
var instance; // Type: options instance.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"); } });