Category / Section
How to prevent dragging and rearranging of Columns?
To prevent dragging and rearranging of columns the AllowDragColumns property has to be set as false. By default this property is set as true. Please refer the below code snippet which illustrates this:
C#
this.GridGroupingControl1.TableOptions.AllowDragColumns = false;
VB
Me.GridGroupingControl1.TableOptions.AllowDragColumns = False
Sample:
http://help.syncfusion.com/support/samples/kb/Grid.Web/6.1.0.34/GGCDragCols/DraggingCols.zip