I have multiple bands in my grid. I only want to turn sorting off for band(0), but allow the user to sort by columns in the other bands. If I use the following code, sorting is turned off for all bands.
grid.DisplayLayout.Override.HeaderClickAction = UltraWinGrid.HeaderClickAction.Select
grid.DisplayLayout.Override.SelectTypeCol = UltraWinGrid.SelectType.None
Is it possible to allow sorting on some bands and not others?
Thanks, Dave
Thanks, that was easy enough.
Instead of setting the properties directly off the displaylayout.override, you can set the override properties on each band.
ie. this.ultragrid1.displaylayout.bands[2].override.headerclickaction = *something*