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.
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;