I have an ultragrid setted manually with groupcolumns
i want to use a grouping features !
When i put the column in the groupbox to group with i want to keep the column in the grid.
I use this property to do this (RowLayoutStyle = RowLayoutStyle.GroupLayout).
but when i use this feature i loose my group columns setup; my group columns will be displayed in the same level of the column on the same row.
With the (RowLayoutStyle = RowLayoutStyle.None) the groupColumn works fine but i can't use a column to group with and keeped in the columns header
How i can fix that ? to use a groupColumn and how i can group with a column in the group ?
thx
Hi,
You are mixing up two completely different sets of functionality here.
OutlookGroupBy allows you to group the grid's data by a column. You drag a column into the GroupByBox and the grid creates a hierarchy with the data.
RowLayoutStyle groups are groupings that contain columns. They are essentially group headers. This has nothing to do with OutlookGroupBy and I don't think that's what you want.
If you want to use OutlookGroupBy and you don't want the grouped columns to be hidden, then all you have to do is set the HiddenWhenGroupBy property on the column to false.
Thx it was help-full :)