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

tooltip not appearing

1 Answer 57 Views
ToolTip
This is a migrated thread and some comments may be shown as answers.
suresh
Top achievements
Rank 1
suresh asked on 25 Oct 2009, 12:50 PM
Hi,
I am having a link button in my webpage and i have disabled that link button, now i am not able to get tooltip on that disabled link button in IE8, whereas it is working fine in IE7.

Can u please suggest me a solution as my projects goes live on 27th of this month i need a quick solution.


Thanks in advance.

Regards,
Suresh S

1 Answer, 1 is accepted

Sort by
0
Tsvetie
Telerik team
answered on 28 Oct 2009, 11:45 AM
Hello suresh,
In order for the RadToolTip to show, it handles certain events of its target control. However, disabled elements in IE8 do not raise events. You can test with the following code:
<asp:LinkButton ID="LinkButton1" runat="server" Text="Test" Enabled="false" OnClientClick="alert(1); return false;"></asp:LinkButton>
<asp:LinkButton ID="LinkButton2" runat="server" Text="Test" Enabled="false" onmouseover="alert(1); return false;"></asp:LinkButton>

Unfortunately, there is nothing that we can do in this case and I would recommend that you make the LinkButtons only visually disabled with CSS and not use the Enabled=false setting.

Regards,
Tsvetie
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
suresh
Top achievements
Rank 1
Answers by
Tsvetie
Telerik team
Share this question
or