tooltip

How do I simply hide a tooltip?

I have a image set as a link, with a title which is used for a caption in a lightbox. I need the "title" set in order to keep the caption for the lightbox, but I don't want the tool tip to pop up when I hover over the links. Anyone got a easy css fix? Or does this need to be done in Javascript? ...

iPad Safari's mapping of mouse events to touch events in image-maps

My website makes extensive use of image-maps. The images are of pages from a medieval manuscript. The mouseOver event of the AREA tags has a tooltip attached to it, which displays a modern typographic transcription of the ancient script for the line the mouse is hovering over. I just checked my website out on the iPad at the Apple stor...

Why is my CSS tool tip not functioning properly in Google Chrome, but fine in Firefox??

http://betawww.helpcurenow.org/media/press/ You'll see I have used spans within an anchor, with the span.hover-description set to display:none; by default, and on a:hover that span is set to display block and absolutely positioned to create a tool-tip effect when hovering over the name and email of the "For Immediate Release" contact na...

Tooltip on button click using jquery

How can I show an error message using tooltip on click of a button and that too if there is error, else the button should just work fine to submit the form? Here is what I have tried with modal dialog $.fx.speeds._default = 1000; $(function() { $('#dialog').dialog({autoOpen:false,show:'blind',hide:'explode'}); $('#savej').click(funct...

Silverlight 4: ToolTipService

I can't scroll to my scrollviewer, it disappear when I move the mouse. Was it because it was just a tooltip? If yes, is there a way to scroll the text in my tooltip? <TextBlock TextWrapping="Wrap" Style="{StaticResource TextBlockWidthStyle}" Text="{Binding ExtendedDescription}" ...

QT - How to apply a QToolTip on a QLineEdit

On a dialog I have a QLineEdit and a button. I want to enable a tool tip for the QLineEdit(in it or under it) when I press the button. Please give me a code snippet. ...

How Can I Create a Bound List of RadioButtions with ToolTips in Xaml?

I want to create a list of logically related RadioButtons. The RadioButtons are bound for MVVM use. There's ToolTips on each RadioButtons. ...

Which option controls the color of this text?

I have applied a color theme called Vibrant Ink (or some modification of it), and since I installed Visual Studio 2010 Pro Power Tools all my statement completion boxes are unreadable. . What setting changes the colors of these boxes? Preferrably, I'd like to change the background color to something darker, but if that's not possible ...

jQuery Select All Elements That Have a Title

I need to apply a tooltip plugin to a bunch of different elements on my page. The only common property to work with a jQuery selector is that they all have a title property set. I tried $('[title=*]') as a selector but this didnt work. ...

Can NotifyIcon.ShowBalloonTip in C# be customized?

Purely out of GUI vanity, I would like to make my task bar tool tip less...well, less "I wear a suit and work at Microsoft"-y. I can't seem to find a setting to do this, but I know that this particular function is relatively new so if anyone knows of a way to change the balloon look and feel I would very much appreciate a link or suggest...

Silverlight autocompletebox tooltip

I have a autocompletebox control in a datagrid. I have a tooltip associated with the autocomplete box. If the dropdown list is open I loose the tooltip. Is it possible to put the tooltip on the textbox in the dropdown list? Is so, how. ...

java jtree redisplay tooltip for every item after a delay

When a tool tip is displayed on a tree and the mouse is moved the tooltip stays visible and the text changes. Is it possible to hide the tool tip and redisplay it when the mouse moves from one item to the next. ...

How to display tooltip in jquery ui theme style

Is there a jquery tooltip plug-in or a self-made solution where the tooltip appears in the style / colors of the jquery ui theme in use? Perhaps by "abusing" the jquery ui dialog? ...

open a pop up when querystring matches

Hi Is there anyway that I can pop up a window with just matching a query string from the url. Sample code is like follows string popup = context.Request.QueryString["raisepopup"]; if (popup == "raise") { //Here when the query string matches to raise the pop up shoul be displayed with some information which is already grab in this c...

WPF custom validator with tooltip

Hi, I'd like to create a custom validator template for my WPF app. I have a tooltip template: <ControlTemplate x:Key="ToolTipTemplate" TargetType="ToolTip"> <Grid Opacity="0.93" MaxWidth="200"> <Border BorderBrush="Black" BorderThickness="1,1,1,1" CornerRadius="2"> <Border.Background> ...

Java swing how to do when mouse over pop out a small box to show details.

I have a JTable displays the event accordingly, I want to do like when mouse over the table cell will pop out a small box show the event details. Something like tooltip how can i do that? is there any component in swing doing that? ...

Binding to UserControl property inside tooltip not working

Hello, I am trying to do some simple binding to a property inside my usercontrol. Does anyone know why this doesn't work? It works when the TextBlock is outside the Tooltip. Thanks! MasterPage.cs: MyUserControlInstance.DisplayName = "Test"; MyUserControl.xaml <ToolTipService.ToolTip> <ToolTip Template="{StaticResource ToolTipT...

Can I explicity show tooltip on Mouse Click event in WPF?

I am showing a Tool Tip when Mouse hovers on Help image. The xaml is given below: <Image x:Name="HelpImage" Width="16" Height="16" ...

Jquery Vtip plugin working with dynamically created data

I am using the Vtip plugin to show title values in a tooltip when hovered. Everything works fine apart from when I try and use the plugin to display toolips on dynamically created data. I normally get around this using live() function. How can I implement the live() function to their code??? this.vtip=function(){this.xOffset=-10;this....

setting balloon tooltip for an image

how to set balloon tooltip for an image in silverlight? ...