Hi all,
I implement row drag drop function, I got a demo source code in somewhere forum(), the problem is:
In demo source code, Telerik tersion is 2009.1.526.35, below code works OK
private void RowMouseMove(object sender, MouseEventArgs e){//Some codeRadItemsControl itemsControl = this.gridView.ItemsControl;this.currentDropIndex = itemsControl.Records.IndexOf(row.Record);//Some code}But currently my solution uses a newer Telerik version, 2014.1.331.40, RadItemsControl could not be found.
How can I find the similar control to replace the old one? Or any idea to get current drop index here?
Thanks.