Version

HeaderDragEnd Property

Event fired after a move operation has been completed or canceled.

This event is cancelable.

Syntax
'Declaration
 
Public Property HeaderDragEnd As String
public string HeaderDragEnd {get; set;}
Example
WebDataGrid1.Behaviors.ColumnMoving.ColumnMovingClientEvents.HeaderDragEnd = "WebDataGrid_HeaderDragEnd"
WebDataGrid1.Behaviors.ColumnMoving.ColumnMovingClientEvents.HeaderDragEnd = "WebDataGrid_HeaderDragEnd";
// The client event 'HeaderDragEnd' takes two parameters sender and e
// sender  is the object which is raising the event
// e is the HeaderDragEndEventArgs

function WebDataGrid_HeaderDragEnd(sender, e) {

    //Returns true if the move operation was canceled at any point, false otherwise.
    var moveCanceled = e.get_moveCanceled();

                  
}
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also