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

I'm new..question

1 Answer 28 Views
ToolTip
This is a migrated thread and some comments may be shown as answers.
MissioDei
Top achievements
Rank 1
MissioDei asked on 28 Sep 2009, 06:34 PM
I need to "tooltipify" 10 images on a page. Each item, each tooltip needs to display different text.

I assumed that I should use tooltipmanager and add all the items to the collection. However, from what I see, this only allows me to add the same tool tip text to each of the items instead of 10 tool tips with different messages.

Is this correct?

If so, does this mean I create a different tool tip for each of the items?

Thanks in advance

1 Answer, 1 is accepted

Sort by
0
Accepted
Georgi Tunev
Telerik team
answered on 29 Sep 2009, 03:49 PM
Hello Strategon,

If the tooltip's content that you wish to set is simple text only, you could use the title property of the images:
<telerik:RadToolTipManager ID="RadToolTipManager1" runat="server" AutoTooltipify="true"
    </telerik:RadToolTipManager> 
    <img src="http://www.mass.gov/massgov2/images/rss/feed-icon.jpg" title="Tooltip1" /><br /> 
    <img src="http://www.mass.gov/massgov2/images/rss/feed-icon.jpg" title="Tooltip2" /><br /> 
    <img src="http://www.mass.gov/massgov2/images/rss/feed-icon.jpg" title="Tooltip3" /><br /> 
    <img src="http://www.mass.gov/massgov2/images/rss/feed-icon.jpg" title="Tooltip4" /><br /> 
    <img src="http://www.mass.gov/massgov2/images/rss/feed-icon.jpg" title="Tooltip5" /><br /> 

If you need more complex tooltip content however, you should declare RadToolTips for every image.

Sincerely yours,
Georgi Tunev
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.
Tags
ToolTip
Asked by
MissioDei
Top achievements
Rank 1
Answers by
Georgi Tunev
Telerik team
Share this question
or