tooltip

How to display jquery qtip tooltip for overlapping divs

I have a series of 'crosshair image' divs on a webpage which are moved with jquery and absolute positioning. I would like to display a qtip tooltip when the user's mouse moves over these crosshairs. The problem is that quite often these divs will be overlapping but qtip tooltip is only displayed for one of the divs, not all of the divs...

C# ToolTip Display Duration

i need some advise on tooltip behaviour. i have tested the following: gameFormToolTip.Show("hello", HomeTableLayoutPanel, 30000); gameFormToolTip.SetToolTip(HomeTableLayoutPanel, GameModel.alphaCoords(HomeTableLayoutPanel.GetCellPosition(nowPicStrl).Column) + "," + HomeTableLayoutPanel.GetCellPosition(nowPicStrl).Row); but in both c...

jQuery: Tooltip Visibility

Hello, I currently have the following Javascript on my page: function tooltip(top, left, speed, easing, callback) { $(".tooltip").css({"margin-top": top, "margin-left": left}); var state; if(state!="1") { if($(".tooltip .anchor").css("display")=="none") { var state="1"; $(".tooltip .anchor")...

Flex tooltip positioning incorrectly

Let's say I'm trying to place a tooltip on the left side of a component on my view. Layout may look similar to this: <mx:HBox> <mx:Button id="btnBack" label="Back" click="btnBack_click();" /> <mx:Button id="btnFirstLoadDemo" label="First Load Demo" click="btnFirs...

WPF- Changing Tooltip background to Transparent

I am attempting to make it so that when I hover over a button in my application, the "tooltip" displays my wording, along with a transparent background, instead of the white background. I am merely trying to change the tooltip default settings to a transparent background.. I have looked and looked, but to no success.. anyone have any i...

Increase gridview header tooltip display time

Morning all. I have a gridview that uses a dictionary to show tooltips against the header within said gridview. protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e) { Dictionary<String, String> headerTooltips = new Dictionary<String, String>(); headerTooltips["Product ID"] = "pr...

jquery plugins: Tooltip plugin using live()

I need a tooltip plugin that depends on live() method instead of normal hoever and mousemove ...

tooltip font in wpf

Hi everybody. Does anybody know how to change the font of tooltip for ui elements? ...

content in tooltip

Hi, I have tooltip(prototip, but it doesnt matter) on my page in javascript and I want when user move on word, where is tooltip, generate tooltip content with string from my proxy-server...so probably when I move on word where is tooltip, javascript send request on proxy server and get response with string content - from this response ja...

How to generate Tooltip, Quickinfo or Notification without Mouseover event in Word VBA?

Is there any possibility in MS Word with VBA to show a short notification message to the user as he begins creating his Word document. I would like to display a short message to him, something like a notification (quickinfo, tooltip but control independent), which displays for about 30 seconds and dissapears automatically, so that the us...

Add a tooltip to a CStatic Ctrl

Is it possible to add a tooltip to a CStatic Ctrl in Visual C++6? How? ...

C# ToolTip Problem

i have the following code that does a image rollover on pictureboxes located inside a table. each table cell has a picturebox in it. the problem being even when in the code it is stated that no tooltip over the picturebox should be displayed, somehow some tooltips show up. i cant find it in the code as the code specifies no tooltips! i...

Showing tooltip of QLineEdit upon focus in Qt

I found that I can set a tooltip on a QLineEdit as such: equation = new QLineEdit(); equation->setToolTip("Example: a*b+c+~c"); However, I would like the tooltip to be displayed when that QLineEdit is focused. How do I do that? Thanks in advance. ...

WPF ToolTip ControlTemplate access defining element properties

Hi, I am restyling the default tooltip by creating an Application level typed style resource which applies to every tooltips. In the tooltip ControlTemplate, I need to access (Binding to) a property value from the element which defines the actual tooltip. The defining element can be of any type. Binding RelativeSource FindAncestor works...

(WinForms) ListView shows tooltips behind its own form when form is topmost

I have a Form with just a ListView in it. The ListView is set to show tooltips for subitems (in Details view). The tool tip shows fine if the form is not top most. When I set the Form's TopMost to true, the tool tip appears "behind" the window. Is there any other property/combination of properties that need to be set in order to get the...

increase display time of html title element as tooltip

Is there a way to make the tootip that appears from the title element of html items display longer than the roughly 6 seconds it does by default? Can not use a custom solution involving divs/spans as they do not work in the current framework. ...

Keep tooltip inside browser window? (without using plugins)

My tool tip code is as follows: HTML/CSS a.tooltip span { display: none; padding: 5px; border: 1px solid #000; background: #999; position: absolute; color: #fff; text-align: left; } <a href="#" class="tooltip">[Help]<span>This is the tooltip</span></a> jQuery: $('a.tooltip').hover( function(...

MFC : How to add tooltip in Cmenu items?

How do you add tooltips for CMenu Items? I couldn't find any straightforward and helpful resource. Please help. Thanks... ...

Crystal XI - How to display tooltips on a geographic map

When a geographic map is inserted it shows me the distribution of our members however is there a way of getting it to display the town name and the number alongside the dot instead of needing to hover over the dot to display the information. This means I can refer to these values when printing. Does anyone know of any mapping controls t...

Web Apps: Closeable Announcements/Info/Tooltip boxes

I want to understand how to implement an announcement/info box system that displays a box for the user with information. The user can do nothing or close the box, but then it will never be seen again. E.g. Facebook home page. Box asking for Translators. if you leave it then its always there. But if you close it, it never appears again....