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
925
Remove the column name from the Group By label?
posted

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

Parents
  • 69832
    Verified Answer
    Offline posted

    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.

Reply Children