Hi all,
I can drag and drop a specifc group by clicking on the group header and drag it to another position, the result is a reshuffled group collection than when i open the grid. How can i stop this.
appreciated !
thanks
You have to override a couple of properties at the band level to stop groupby swapping. You can try this..
grid.DisplayLayout.Bands(0).Override.AllowGroupMoving = AllowGroupMoving.NotAllowed
grid.DisplayLayout.Bands(0).Override.AllowGroupSwapping = AllowGroupSwapping.NotAllowed
GroupSwapping is off by default, so you probably just need to turn off AllowGroupMoving.