Hi,
I've implemented the drag/drop functionality as explained in this link. It's working as described. However, I would like to extend the functionality so that at the end of a drop I can renumber a column in my bound ObservableCollection and possibly save the updated order to the database.
The first way I thought to do this was to create an event handler on drop in the radgridview xaml. However, if I break-point the newly created handler in code-behind, it never enters it. I assume this is because it is handled in the RowReorderBehavior class. I'd like to keep the classes I copied from the above link as-is, so that I can use them for other RadGridView's, but be able to implement the additional functionality.
How can I do this? I'm aware adding another event handler may not be the best way to go about it so I'm open to other ideas.
I've implemented the drag/drop functionality as explained in this link. It's working as described. However, I would like to extend the functionality so that at the end of a drop I can renumber a column in my bound ObservableCollection and possibly save the updated order to the database.
The first way I thought to do this was to create an event handler on drop in the radgridview xaml. However, if I break-point the newly created handler in code-behind, it never enters it. I assume this is because it is handled in the RowReorderBehavior class. I'd like to keep the classes I copied from the above link as-is, so that I can use them for other RadGridView's, but be able to implement the additional functionality.
How can I do this? I'm aware adding another event handler may not be the best way to go about it so I'm open to other ideas.