Category / Section
How to Drag & Drop a Row in SfDataGrid?
1 min read
SfDataGrid offers a built-in support for row drag and drop functionality by enabling SfDataGrid.AllowDraggingRows and AllowDrop property.
<syncfusion:SfDataGrid x:Name="datagrid" ShowRowHeader="True" AutoGenerateColumns="False" AllowDraggingRows="True" AllowDrop="True" ColumnSizer="Auto" ItemsSource="{Binding GDCSource}">
Refer the below example which demonstrates an RowDragandDrop with the SfDataGrid.
Sample