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
1050
grouping
posted

can we hide the field that is grouped?

i mean...if i choose one filed to be grouped...i want that filed not to be displayed in the record level.

 

Parents
No Data
Reply
  • 2677
    posted

    Hello,

     If you don't want the field that you are grouping on to be shown when the records are grouped, you  can set the CellVisibilityWhenGrouped  property.

    Here are some code snippets.

    XAML:

    <igDP:XamDataPresenter.FieldSettings>
        <igDP:FieldSettings CellVisibilityWhenGrouped="Collapsed"/>
    </igDP:XamDataPresenter.FieldSettings>

    C#:

    this.XamDataPresenter1.FieldSettings.CellVisibilityWhenGrouped = Visibility.Collapsed;

Children
No Data