New to Telerik UI for ASP.NET AJAX? Start a free 30-day trial
OnRowDragging
Updated over 6 months ago
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 by | RadGrid | 
|---|---|
| Arguments | get_domEvent() - returns the event object representing the mousemove action | 
| Can be canceled | No | 
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;
}