Hello,
When i tick "enable column reordering" from specific task it works fine. but i want to enable this from code. i tried the followings but did not work.
this.AllowColumnReorder = true;
this.MasterTemplate.AllowColumnReorder = true;foreach (GridViewColumn item in this.MasterTemplate.Columns) { item.AllowSort=true; item.AllowReorder = true; item.IsPinned = false; } Can u help about this.