In the ultrawingrid is it possible to have 2 seperate cells under 1 column heading?
The 2 cells are related so I want the user to know this and enter both values in.
Hi Keerti,
If you are using RowLayouts, then you can hide a column header using the LabelPosition property. You would have to set this on the LayoutInfo of each column.
If you are not using RowLayouts, then you can just use the ColHeaderVisible property on the Override object.
Hi
I am able to group the columns under a group but i dont want individual column headers to appear. Its enough if the group Header appears , is there any way to remove those column headers under a group or set visible = 0. Would be great if you can provide some help on this
Thanks & Regards
Keerti Somasundaram
That worked a treat! Thanks.
Yes, it is possible to move columns programmatically. You would do this by changing the LayoutInfo properties on the column. It's a little more complicated than you may be used to, though. You really need to understand GridBagLayouts and how they work. You probably want to change the OriginX and OriginY in this case.
Ok I've managed to get it working somewhat.
Is it possible to move columns programmatically as when I move the dummy column to a different location in the wingrid it leaves behind the 2 columns under it.