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

RadGridView: Make Column Tool Tips availabe in Column Chooser

2 Answers 29 Views
New Product Suggestions
This is a migrated thread and some comments may be shown as answers.
erwin
Top achievements
Rank 1
Veteran
Iron
erwin asked on 19 Jan 2017, 06:51 PM

Hi,

would be cool if tooltips defied for RadGridView Columns would also show in the column chooser.

Regards

Erwin

2 Answers, 1 is accepted

Sort by
0
Dimitar
Telerik team
answered on 20 Jan 2017, 11:07 AM
Hello Erwin,

This is possible, here is how you can set the tooltips:
public RadForm1()
{
    InitializeComponent();
    
    this.radGridView1.ColumnChooserItemElementCreating += radGridView1_ColumnChooserItemElementCreating;
}
 
private void radGridView1_ColumnChooserItemElementCreating(object sender,
    Telerik.WinControls.UI.ColumnChooserItemElementCreatingEventArgs e)
{
    e.ItemElement.ToolTipText = e.Column.Name;
}

I hope this information is useful. Let me know if you need further assistance.

Regards,
Dimitar
Telerik by Progress
Try our brand new, jQuery-free Angular 2 components built from ground-up which deliver the business app essential building blocks - a grid component, data visualization (charts) and form elements.
0
erwin
Top achievements
Rank 1
Veteran
Iron
answered on 20 Jan 2017, 11:54 AM

Perfect!

Regards Erwin

 

Tags
New Product Suggestions
Asked by
erwin
Top achievements
Rank 1
Veteran
Iron
Answers by
Dimitar
Telerik team
erwin
Top achievements
Rank 1
Veteran
Iron
Share this question
or