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
135
HeaderPlacementInGroupBy = OnTopOnly
posted

Hi,

 

When grouping AND filtering at the same time in a XamDataGrid with the HeaderPlacementInGroupBy set to OnTopOnly,  you get the header on top as expected, but also under the first group item, what is not expected. I tried to avoid that behaviour in the DataRecordPresenter template, but didn't find an appropriate trigger. Should I log an service call for this faulty behaviour  ? I made a sample app that illustrates this issue. Thanks.

xaml :

 

<igDP:XamDataGrid x:Name="_sampleGrid" IsGroupByAreaExpanded="True">

    <igDP:XamDataGrid.FieldSettings>

        <igDP:FieldSettings AllowRecordFiltering="true" />

    </igDP:XamDataGrid.FieldSettings>

    <igDP:XamDataGrid.FieldLayoutSettings>

        <igDP:FieldLayoutSettings 

            AutoGenerateFields="true" 

            FilterUIType="FilterRecord"

            HeaderPlacementInGroupBy="OnTopOnly"

        />

    </igDP:XamDataGrid.FieldLayoutSettings>

</igDP:XamDataGrid>