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

[Solved] RadGrid: hints

2 Answers 95 Views
Grid
This is a migrated thread and some comments may be shown as answers.
Eugene Volf
Top achievements
Rank 1
Eugene Volf asked on 30 Sep 2009, 02:39 PM
Hello!
I want to show unique hints in everybody rows of RadGrid? How do it?
thanks

2 Answers, 1 is accepted

Sort by
0
Daniel
Telerik team
answered on 30 Sep 2009, 03:26 PM
Hello Eugene,

I suppose you mean "tooltips" - if so, please try the following approach:
protected void RadGrid1_ItemDataBound(object sender, GridItemEventArgs e) 
    if (e.Item is GridDataItem) 
    { 
        e.Item.ToolTip = "This is item " + e.Item.ItemIndex; 
    } 

Regards,
Daniel
the Telerik team

Instantly find answers to your questions on the new Telerik Support Portal.
Watch a video on how to optimize your support resource searches and check out more tips on the blogs.
0
Eugene Volf
Top achievements
Rank 1
answered on 01 Oct 2009, 07:47 AM
Very thanks, Daniel! Its excellent!
Tags
Grid
Asked by
Eugene Volf
Top achievements
Rank 1
Answers by
Daniel
Telerik team
Eugene Volf
Top achievements
Rank 1
Share this question
or