tooltip

Databind to a tooltip

Is there any way to bind a tooltip to a datasource. Here is a simplified example of what I am trying to do. I have a DataTable with two columns, one is a datetime the other is a varchar. This DataTable is bound to a BindingSource. That binding source has its current record bound to a label displaying the datetime column. How can I get t...

how can i disable the tooltips of the buttons on a flex 3 togglebuttonbar

Hello stackOverFlowers, I'm creating an flex 3 application with 3 togglebuttonbars. What i would like to do is disable the tooltip of the buttons on one togglebuttonbar. Does anybody know how i can access the buttons on the togglebuttonbar to disable the tooltips? I don't want to disable all the tooltips off the total application(Tool...

asynchronously call a wcf service in xaml

Hi, I'm trying to figure out how to call a wcf in an asynchronous pattern in xaml tooltip object. so far I got the following code inside my combobox item template the combo box has several itemNames pulled from a database and a toolip appears whenever mouse is hovered on any of the items. I'm trying to show more information on the hove...

WPF Tooltip Visibility

How can I ensure that a button's Tooltip is only visible when the button is disabled? What can I bind the tooltip's visibility to? ...

Visual Studio Free addin or resharper plugin to show constant value in tooltip

Is there a free addin or resharper plugin that will let me see the actual value of a constant value when you hover over a reference to it ? Since the compiler forces const fields or properties to be a concrete compile-time constant, it is only logical that it show it straight in the tooltip. eg: const int DISPLAY_MODE_SIMPLE = 0x...

jQuery tooltip clickable?

Hi, I'm using this tooltip plugin: http://bassistance.de/jquery-plugins/jquery-plugin-tooltip/ Is there any way I can make the tooltip clickable? I don't want the tooltip to disappear when I try to mouse-over it. If not, what other jQuery plugin do you recommend that will allow clickable tooltips? One feature I NEED is the ability to ...

Two Javascripts in one Input

Hello, i try to make two js in one Input, but only the Tooltip works. <input type="password" style="background-color:#ffffff" size="10" name="pw" onfocus="doit()" tooltipText="test"> This is my doit function: <script type="text/javascript"> function doit(){ document.getElementById('username').value="pcid1" + document.getElementById...

What's the easiest way to show a tooltip on my web pages?

I'd like to modify some parts of my website to show popups when a user clicks on some <td> elements. I'd like to keep the modification very simple, which is why I considered using a JavaScript framework. It does not really matter which, but I'd like to be able to include html in the tooltip's text. What's the easiest way to achieve this?...

CSS: Child div overlapping parent

I have something vaguely like the following: <div id="body"> surrounding text <div id="pane" style="overflow: auto; height: 500px; width: 500px;"> lots and lots of text here <span id="some_bit">tooltip appears below-right of here</span> </div> more surrounding text (should be overlapped by tooltip) </div> and: <div i...

setting particular part of the tool tip text to be bold with different font color

i have tool tip for an image in asn asp.net & c#.net and i want to set particular part of the tool tip text to be bold with different font color, how can that be done? ...

How to set the tip dimensions with jQuery qTIp?

I'm having some trouble with modifying qTip's tip size (x,y). I tried to add the style: { tip: { x:2,y:2 } } in all sorts of ways, but failed. How can I add it to the following script? // Status Tooltips Style $.fn.qtip.styles.statusTooltips = { background: '#333333', color: 'white', textAlign: 'center', border: { ...

Workaround for setToolTipText consuming mouse events?

This seems to be a verified problem with SWING http://forums.sun.com/thread.jspa?threadID=385730 I'm currently trying to set the tooltip text of a tab in a JTabbedPane but when I do I can't actually select the tab anymore because the tooltip added a mouse listener that is consuming the events. Does anyone know of a workaround that al...

jquery tooltip showing a hidden div element?

I am trying to have tooltip for my personal website http://www.stacked.in. when I move the mouse on the link, I want to have tooltip displayed. Tooltip display content is already available inside the html page as a div element, but it is hidden. I want the tool-tip to be displayed only when I move the mouse over the link. I use jquery an...

Open Flash Chart - tooltip #x_label# not showing.

Hi there, I'm currently playing with a bar chart implemented through Open Flash Charts (I believe version 1, might be version 2...) with PHP. Unfortunately, we're having real trouble with the tooltip not showing the correct thing. I am trying to get it to show the x-axis label for the hovered-over column, then a ":", then the value of t...

jQuery - best tooltip plugin?

Hi I need a tooltip plugin that with the following characteristics: to be as small as possible to show a tooltip when mouse over a element, which contents are from another element (not just the title attribute) tooltip can open on mouse over of the trigger element and follow the mouse while still over that element, and closes on mouse...

jQuery tooltip makes div with overflow:auto/scroll flicker in IE7

Because a customer requested it, I've changed a div to position: absolute; top: 5px; bottom: 5px; overflow: auto; min-width: 945px; which basically makes the div fill out the available area vertically, and show a vertical scrollbar if it doesn't fit. I had another problem that seems to be unrelated to this with the same setup, but thi...

What is the simplest way to make tooltips in Tkinter?

For those that don't know, tooltips are those little bits of text that popup when the mouse hovers over a widget for a certain durration of time. I'm using Windows 7 if it makes a difference. ...

jQuery animation lock + callback confusion

Hi again. I've got little animation in jQuery. However, I don't want to allow calling other animation, until one isn't over. URL http://misiur.com/pasek/ HTML <div class="tooltip act" style="display: none;" id="t_arrow_1">Position absolute GO!</div> JS // JavaScript Document jQuery(document).ready(function(){ var lock = 0; $('.ar...

jquery tooltip on dynamic element

I use this tooltip plugin to make the tooltip on element as $('.showtooltip').tooltip({ delay: 0, track: true, showURL: false, bodyHandler: function() { var tipStr = "SOME DISPLAY HTML"; return $(tipStr); } }); And my ajax create elemen...

Understanding the VB.Net Tooltip control

Hi there! I'm using a ToolTipto display some additional info on my form components, and I'm handling the display by myself. That is I have a function that does : Public Sub ShowTip(ByVal sender As Control) Dim Pair As String() = sender.Tag.ToString.Split(New Char() {";"c}, 2) If Pair.GetLength(0) = 1 Then MyToolTip.Too...