Hi All,
I'm using ultragrid v7.3. Is there any property to set so that I could keep the column header displayed while I'm vertical scrolling.
Any help or suggestion is welcome.
Thanks, this properti works in v7.3. I have the child and in my grid, however only the first band's column header is displayed, after I set this properti, the first band's column header did fixed on the top when I'm vertically scrolling, this is what I want.
Hi,
I'm not sure if the property existed back in v7.3 (it might have been added later), but take a look at the grid.DisplayLayout.Override and see if there is a property called HeaderPlacement. If it's there, you can do this:
this.ultraGrid1.DisplayLayout.Override.HeaderPlacement = HeaderPlacement.FixedOnTop;
How this behaves may also depend on whether your grid is displayed in a hierarchy or not. Do you have child bands in your grid?