Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
340
Column Headers in group by
posted

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

Parents
  • 1230
    Verified Answer
    Offline posted

    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

Reply Children