Spread for ASP.NET 11 Product Documentation
ColumnDragMove
Spread for ASP.NET 11 Product Documentation > Client-Side Scripting Reference > Scripting Members > Events > ColumnDragMove

Occurs when the user drops a column at the destination location.

Syntax

[Inline HTML]

<ELEMENT ColumnDragMove = "handler" ...>

[JavaScript]

FpSpread1.addEventListener("ColumnDragMove", handler, ...)

or

FpSpread1.onColumnDragMove = handler

Arguments

event.cancel
Whether to cancel the move
event.col
Column that was moved
event.spread
Spread control that raises the event

Return Type

None

Remarks

This event is triggered when the user drops the column.

Example

This example JavaScript code maps the event for the Spread on the client side.

JavaScript
Copy Code
<script lang="javascript" type="text/javascript">
    window.onload = function () {
      var spread1 = document.getElementById("<%=FpSpread1.ClientID %>");
      if (document.all) {
// IE
if (spread1.addEventListener) {
// IE9
spread1.addEventListener("ColumnDragMove", dragMove, false);
} else {
// Other versions of IE and IE9 quirks mode (no doctype set)
        spread1.onColumnDragMove = dragMove;
}
}
else {
// Firefox
spread1.addEventListener("ColumnDragMove", dragMove, false);
      }
    }
    
    function dragMove(event) {
      alert("The column was moved");
    }
    
</script>
See Also