When i'm trying to implement reordering rows such as in yours example, row resizingstops working.
Mouse cursor changing to SizeNS, but instead resizing goes reordering.
2 Answers, 1 is accepted
0
Vlad
Telerik team
answered on 14 Aug 2012, 07:06 AM
Hello,
If you are using RowReorderBehavior from this demo here is how to change OnDragInitialize:
private void OnDragInitialize(object sender, DragInitializeEventArgs e)
{
var source = e.OriginalSource as FrameworkElement;
if (source != null && source.Name != "PART_RowResizer")
{
DropIndicationDetails details = new DropIndicationDetails();
var item = (sender as RadGridView).SelectedItem;
details.CurrentDraggedItem = item;