|
-
May 19th, 2005, 05:06 AM
#1
Thread Starter
Hyperactive Member
Tooltip question
Hello all,
I've got the following problem. When the mouse hovers over a field (in my ASP .NET app), the tooltip text is shown. But it's only shown for a few seconds. Is it possible to set the timer ONLY for this application to show the tooltip until the user leaves the field?
Thanx
Marco
-
May 19th, 2005, 06:35 AM
#2
Frenzied Member
Re: Tooltip question
Nope unfortunately not ASP.NET code generates HTML code which is interpreted by the web browser. In the case of ToolTips they are alt or title attributes in HTML code and therefore you have no control how they are displayed - it's all done by the browser.
If this really is an issue for you you could implement a JavaScript function to show/hide a panel containing a description of the field using the onmouseover and onmouseout client-side events. Basically you'd be implementing your own tooltip system but you'd have control over timings etc.
HTH
DJ
If I have been helpful please rate my post. If I haven't tell me!
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|