Quantcast
Channel: Telerik Forums RSS
Viewing all articles
Browse latest Browse all 94857

DragAndDrop RadGridView, Drag into Grid whitespace

$
0
0

If I add the following to OnDrop in RowReorderBehaviour.cs it solves the issue.

 

// this occurs when you drag an item over itself
if(details.CurrentDraggedItem == details.CurrentDraggedOverItem)
{
  return;
}
 
// this occurrs when you drag an item without ever dragging over another item
if(details.CurrentDraggedOverItem == null)
{
  return;
}

 


Viewing all articles
Browse latest Browse all 94857

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>