New to Telerik UI for ASP.NET AJAX? Start a free 30-day trial
OnRowDragging
Updated on Nov 25, 2025
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:
| 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;
}