How do i remove the column name from the Group By label? In the attached image, I want to remove ProductName and ProductVersionName from the Group By rows. Basically, I think I need a way to override that label since I will want the actual product name and version in the group by label just not the starting text.
Thanks
Scott
All set - thanks
[value] ([count])
Thanks - what if I also want the row count? Is there a similar value to [value]?
You can set the UltraGrid.DisplayLayout.Override.GroupByRowDescriptionMask property to '[value]' to display only the group's value, i.e., this eliminates the column name and the row count.
You can also handle the InitializeGroupByRow event, and set the e.Row.Description property to override the text for that particular row.