devexpress aspxdatagridview disable column drag and drop

Solutions on MaxInterview for devexpress aspxdatagridview disable column drag and drop by the best coders in the world

showing results for - "devexpress aspxdatagridview disable column drag and drop"
Philip
14 May 2018
1// CodeBehind
2gridView.SettingsBehavior.AllowSort = false;  
3gridView.SettingsBehavior.AllowDragDrop = false;
4
5// Markup
6 SettingsBehavior-AllowDragDrop="false" SettingsBehavior-AllowSort="false"