Browse Source

FieldReference#s in Grouped report

pull/1/head
peterforstmeier 15 years ago
parent
commit
8dbdc39ddb
  1. 3
      src/AddIns/Misc/Reports/ICSharpCode.Reports.Core/Project/Collections/Collections.cs

3
src/AddIns/Misc/Reports/ICSharpCode.Reports.Core/Project/Collections/Collections.cs

@ -156,7 +156,8 @@ namespace ICSharpCode.Reports.Core{ @@ -156,7 +156,8 @@ namespace ICSharpCode.Reports.Core{
public bool IsGrouped
{
get {
return CreateGroupedList().Count > 0;
return (this[0] is BaseGroupedRow)|| (this[0] is BaseGroupItem) ;
//return CreateGroupedList().Count > 0;
}
}

Loading…
Cancel
Save