Hide Column Grouping Area at the top of RadGridView

1 Answer 27 Views
GridView
Roland
Top achievements
Rank 1
Roland asked on 14 Jan 2025, 09:23 AM

Hi,

I am using a RadGridView with an unmodified GreenTheme. I disabled Grouping Columns, but the Area to group columns at the top of the grid is still shown and I can not find an easy way to hide it.

How can I make it disappear?

 

<telerik:RadGridView
    CanUserGroupColumns="False"
    ScrollViewer.VerticalScrollBarVisibility="Visible"
    ScrollViewer.CanContentScroll="True"
    telerik:StyleManager.Theme="{StaticResource GreenTheme}"
    ItemsSource="{Binding FilteredMessages}"
    VerticalAlignment="Stretch"
    ScrollMode="RealTime"
    IsReadOnly="True" />
Thanks in advance,

Roland

1 Answer, 1 is accepted

Sort by
1
Accepted
Stenly
Telerik team
answered on 14 Jan 2025, 09:42 AM

Hello Roland,

To remove the group panel, you can set the ShowGroupPanel property of RadGridView to False

<telerik:RadGridView ItemsSource="{Binding MyCollection}" ShowGroupPanel="False"/>

The produced result is as follows:

With this being said, I hope the provided information will be of help to you.

Regards,
Stenly
Progress Telerik

Love the Telerik and Kendo UI products and believe more people should try them? Invite a fellow developer to become a Progress customer and each of you can get a $50 Amazon gift voucher.

Roland
Top achievements
Rank 1
commented on 14 Jan 2025, 11:03 AM

Hi Stenly,

This was exactly what I was looking for (and could not find).

Thank you so much!

Regards,

Roland
Tags
GridView
Asked by
Roland
Top achievements
Rank 1
Answers by
Stenly
Telerik team
Share this question
or