Row header indicators in Gridview

1 Answer 167 Views
GridView
Dreyfus
Top achievements
Rank 1
Veteran
Dreyfus asked on 21 Jan 2022, 01:46 AM

Hi.

Is there any way to remove or hide the indicator icons shown in row header?

1 Answer, 1 is accepted

Sort by
0
Dinko | Tech Support Engineer
Telerik team
answered on 21 Jan 2022, 03:25 PM

Hi Jay Sumalnap,

Thank you for the provided image.

What you can try is to hide the GridViewRowHeaderColumn. To do that you can set the RowHeaderColumnWidth property of the TableElement to 0.

this.radGridView1.TableElement.RowHeaderColumnWidth = 0;

I hope this approach will work for you.

Regards,
Dinko
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.

Dreyfus
Top achievements
Rank 1
Veteran
commented on 22 Jan 2022, 01:58 AM

Hi Dinko. Thanks, but I don't want to hide the row header column. I just want to hide icons.
Dess | Tech Support Engineer, Principal
Telerik team
commented on 24 Jan 2022, 02:06 PM

Hi, Jay,

If you need just to hide the images, it is appropriate to set the following properties to null: 

            this.radGridView1.TableElement.EditRowHeaderImage = null;
            this.radGridView1.TableElement.CurrentRowHeaderImage = null;

 If you need any further assistance please don't hesitate to contact me. 

 

Tags
GridView
Asked by
Dreyfus
Top achievements
Rank 1
Veteran
Answers by
Dinko | Tech Support Engineer
Telerik team
Share this question
or