RadGrid Control: disabling drag and drop column is not working. User can pick the column and while dragging somewhere, following error comes
“
Unable to download.
Unspecified error
“
I have read the following link.
http://www.telerik.com/community/forums/aspnet/grid/disable-drag-and-drop.aspx
I have set the following properties in code behind and design view as well and both are not working.
telRadGrid.ClientSettings.AllowRowsDragDrop = False
telRadGrid.ClientSettings.ReorderColumnsOnClient = False
telRadGrid.ClientSettings.AllowDragToGroup = False
<ClientSettings AllowColumnsReorder="false" AllowDragToGroup="false" ReorderColumnsOnClient="false">
<Resizing AllowColumnResize="false" />
</ClientSettings>