Results 1 to 2 of 2

Thread: Tooltip question

  1. #1

    Thread Starter
    Hyperactive Member JMvVliet's Avatar
    Join Date
    May 2001
    Location
    Papendrecht, Netherlands
    Posts
    310

    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

  2. #2
    Frenzied Member dj4uk's Avatar
    Join Date
    Aug 2002
    Location
    Birmingham, UK Lobotomies: 3
    Posts
    1,131

    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
  •  



Click Here to Expand Forum to Full Width