I have a couple of RadListViews - they are same except for they visualize different item collections. I need to have Draop and drop functionality to Reorder items inside list view, but I want to disallow dragging and dropping items from one list to another.
You could easily achieve the desired by implementing a custom ListBoxDragDropBehavior which inherits from the default ListBoxDragDropBehavior. You will need to override the CanDrop method in order to check whether the drop will be inside of another control and if so to return false:
I have also attached a sample project which demonstrates the exact approach.
Hope this will work for you.
Regards,
Kalin
Telerik
Check out Telerik Analytics, the service which allows developers to discover app usage patterns, analyze user data, log exceptions, solve problems and profile application performance at run time. Watch the videos and start improving your app based on facts, not hunches.