Home › Forums › WinForms controls › Xceed Grid for WinForms › GroupManagerRow.TitleFormat and overriding GetVariableText › Reply To: GroupManagerRow.TitleFormat and overriding GetVariableText
Instead of <i>foreach(Group group in this.GridControl1.Groups)</i>, you should only use the Group this GroupManagerRow is part of. Like this:<pre>GroupBase group = this.ParentGroup;
foreach(Xceed.Grid.DataRow row in group.GetSortedDataRows(true)) { … }</pre>
Imported from legacy forums. Posted by Tommy (had 299 views)