Hello,
Currently, I have a RadDataGrid in my UWP app and need the ability to drag and drop rows in any order. I turned on 'CanDrag' but it drags the entire grid instead of one row.
Also, it'd be great if I could add a column with the drag symbols and only allow users to reorder rows if they use that column to drag the rows.
Any help is appreciated.
Best,
Nick
<grid:RadDataGrid
x:Name="PlaylistDataGrid"
Width="Auto"
AutoGenerateColumns="False"
UserGroupMode="Disabled"
SelectionMode="Single"
SelectionChanged="OnSelectedPlayChanged"
SelectionUnit="Cell"
FrozenColumnCount="6"
AllowDrop="True"
CanDrag="True"
DragStarting="PlaylistDataGrid_OnDragStarting"
Drop="PlaylistDataGrid_OnDrop">
</grid:RadDataGrid>