Hi,
I am using XamDataGrid v9.2 and I would like to get rid of the column headers in the group by I want them in the top only. I have set: HeaderPlacementInGroupBy = "OnTopOnly" but I also have in the FieldSettings AllowRecordFiltering="True". For some weird reason the grid with record filtering always adds the column headers in the group by...
I need the filters and I need to get rid of the column headers in the group by, does someone knows how to get rid of them?
Thanks,
Federico
Awsome,
Glad I could help
Hi Key360,
Thanks a lot, that sort out the problem, I had been hours looking for a solution to this!
Btw, this part was needed if not the headers were shown on the first group by also (strange...):
<igDP:XamDataGrid.ViewSettings><igDP:GridViewSettings UseNestedPanels="True" /></igDP:XamDataGrid.ViewSettings>
Cheers,
Hi Federico,
We had the same problem.
Make sure that the Fieldsettings.FilterUIType = Default and not LabelIcons. It has an effect on the grouping labels.
Also check that HeaderPlacement="OnTopOnly", not only HeaderPlacementInGroupBy="OnTopOnly".
We also found that we get a better visual grouping style when setting nested panels to True:
<igDP:XamDataGrid.ViewSettings> <igDP:GridViewSettings UseNestedPanels="True" /> </igDP:XamDataGrid.ViewSettings>Hope this helps