Hi ,

In my application I have to implement Tooltip for Link Button.

When mouse hover on link button , I should get a Tooltip.
It can be a Telerik ToolTip as well.

Please help me with this concept.
I need step by step process for implementing this.

Regards.

Recommended Answers

All 4 Replies

Hi ,

In my application I have to implement Tooltip for Link Button.

When mouse hover on link button , I should get a Tooltip.
It can be a Telerik ToolTip as well.

Please help me with this concept.
I need step by step process for implementing this.

Regards.

<asp:LinkButton ID="lb" runat="server" ToolTip="Hi, you just hovered over me!"> </asp:LinkButton>

you could also use one of the many javascript tool out there like: <http://ashishware.com/Tooltip.shtml>

Hey... Thank U :)

Actually I think I was not able to express my prob. properly...
I want to customise the Tooltip like border ,font ,background etc.

It will be very helpful if u can help me with this...
Thank u ...

You can do that with <http://ashishware.com/Tooltip.shtml> tooltip.js.
All you have to do is download the file and put it in your scripts folder for your web site.
Then include a reference in your web page like: <script language="javascript" src="js/Tooltip.js"></script>.
In the body tag initialize like: <body onload=init()>.
After the body tag place a div, which you can style, like: <div id="a" style="background-color:ivory;width: 150px; height: 49px;border: solid 1px gray; text-align: center;"> </div>.
Finally in your span, div, td tag put in onmouseover=if(t1)t1.Show(event,l1) onmouseout=if(t1)t1.Hide(event).
It is pretty simple. I got this example from: <http://ashishware.com/SimpleTT.shtml>

Thank u soooo much... It really helped... :)

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.