Version

Please note that this control has been retired and is now obsolete to the XamDataGrid control, and as such, we recommend migrating to that control. It will not be receiving any new features, bug fixes, or support going forward. For help or questions on migrating your codebase to the XamDataGrid, please contact support.

Column Moving Events

There are five events associated with column moving in xamGrid™. The column moving events allow you to perform some custom business logic before, during or after a column has moved.

  • ColumnDragStart – The moment right before a drag operation is performed on a column, the ColumnDragStart event fires.

  • ColumnMoving – This event fires while dragging a column.

  • ColumnDropped – This event fires when a column has been successfully moved to a new position.

  • ColumnDragCanceled – This event is fired when a drag operation is cancelled.

  • ColumnDragEnded – This event is fired when a drag operation is completed, regardless if it was successful or not.

These events allow you to control how your end user interacts with the column moving feature. For example you can cancel the ColumnDragStart event which would not allow your end users to move that column.