New to Telerik UI for ASP.NET AJAXStart a free 30-day trial

OnRowDragging

Sys.EventArgs OnRowDragging Property

This event can be used if you want to check the current position of the mouse while the user is still dragging. It can be used to cancel the dragging action on Escape button click:

Cancel row drag and drop when ESC key is pressed

Fired byRadGrid
Argumentsget_domEvent() - returns the event object representing the mousemove action
Can be canceledNo

Example:

ASP.NET
<ClientSettings AllowRowsDragDrop="true">
    <Selecting AllowRowSelect="true" />
    <ClientEvents OnRowDragging="rowDragging" />
</ClientSettings>
JavaScript
function rowDragging(sender, args) {
    var event = args.get_domEvent();
    // the current position of the mouse
    var coordinateX = event.clientX;
    var coordinateY = event.clientY;
}
Not finding the help you need?
Contact Support