This is a migrated thread and some comments may be shown as answers.

Hide GroupColumn Expand/Collapse

1 Answer 75 Views
GridView
This is a migrated thread and some comments may be shown as answers.
Marc
Top achievements
Rank 1
Veteran
Marc asked on 14 Sep 2018, 12:49 PM

Hello,

I want to hide the column you can see in the picture.

 

Regards

1 Answer, 1 is accepted

Sort by
0
Dess | Tech Support Engineer, Principal
Telerik team
answered on 17 Sep 2018, 11:03 AM
Hello, Marc,
 
In order to hide the column that holds the group expander, you can set the TableElement.GroupIndent property to 0. However, make sure that the AutoExpandGroups property is set to true. Otherwise, you won't be able to expand the group:

public RadForm1()
{
    InitializeComponent();
 
    this.radGridView1.AutoExpandGroups = true;
    this.radGridView1.TableElement.GroupIndent = 0;
}



I hope this information helps. If you need any further assistance please don't hesitate to contact me. 

Regards,
Dess
Progress Telerik
Get quickly onboarded and successful with your Telerik and/or Kendo UI products with the Virtual Classroom free technical training, available to all active customers. Learn More.
Tags
GridView
Asked by
Marc
Top achievements
Rank 1
Veteran
Answers by
Dess | Tech Support Engineer, Principal
Telerik team
Share this question
or