tooltip

WPF TextBox Validating results ToolTip

Experimenting with WPF validating input, I tried to use ToolTip for displaying results of TextBox input validation, like this: <Style.Triggers> <Trigger Property="Validation.HasError" Value="true"> <Setter Property="ToolTip" Value="{Binding RelativeSource={RelativeSource Self}, Path=(Validation.Errors)[0].E...

Tree Show toolTip during drag

I am denying a user the ability to drop into my tree during certain conditions, it's all going well, but I want to tell the user why I'm denying the drop. I would prefer to do it with a toolTip, but it doesn't seem to work. Can I not have a toolTip during a drag operation? How can I force one? Flex seems to treat toolTips as a property...

JQuery Hover Tip

I am trying to modify the following script to show/hide the Tip only when the "?" is hovered on and not the entire "li" Block The HTML: <ul class="tips"> <li> <a href="#" class="tooltip">?</a> Feature 1 <div class="tip"> <h4>Tip Title 1</h4> <h4>Tip Q</h4> <p>Tip A</p> </div> </li> <li> <a href="#" class="to...

UI Dialog Tooltip

Hello, I'm searching for a tooltips that should function within a UI dialog, but after searching and testing several tooltips (like cluetip) i have no succes.. :-s I've tested jquery Cluetip. This tooltip showed up when i mouve the mouseover a link/img, but the tooltip has showed BEHIND the ui dialog... ??? A z-index problem i guess. ...

Render tooltip on disabled HTML Button.

I have a HTML button. I have tried to render a tooltip on it based on the "title" attribute of the button and it doesn't render. Mainly because it's disabled. I then tried wrapping the button in a span and setting the "title" attribute of the span. Hovering over the button that is wrapped in the span still has no effect. The tooltip ...

tooltip for Tab control in tab header

Hi, Im my tab control i want to set tooltip for all tab neaders. I coded like below <TabItem.ToolTip> <StackPanel Height="40" Width="70" Orientation="Vertical" HorizontalAlignment="Center" VerticalAlignment="center" > <Image VerticalAlignment="Top" Width="30" Height="10" Source="Image\TAB2.png" Name="image2" /> <TextBlock FontFamily=...

How can I show a Tooltip via Win32-API programatically.

Hello Community, I have to show a Tooltip for a control via Win32-API programmatically. (I don't want to use the standard .NET 3.5 [WinForms] implemented way [ToolTip Extender Provider] cause of problems using only one Tooltip-Provider for all controls). I use a new implementation of the Tooltip Extender of .NET from Codeproject: Buil...

C# - Remove ToolTip only supplying in which Control is the ToolTip

Hi guys. Yes this question as already been asked here at SO. The problem is that the solution for that question was hiding the tooltip, and i really need to remove not hide it. I'm adding tooltips to several controls in my Form using a couple a functions i've made. There are two functions, one to set the Tooltip to display on Mouse...

Show a tooltip above a cell in a JTable

Hello, I need to show a tooltip above (or below :) a cell when the user enter a wrong value in it (see the image below). I have a tooltip, but I need a Point to display it at the right position, so I want to get a cell position. Do you know how to get this? BUT, if you have a better solution to realize this behaviour, I'm open to all pr...

Library for eclipse style tooltips?

Does anyone know of an open source swing tooltip library that works like eclipse's tooltips? Specifically, the functionality I'm looking for is a tooltip that acts like a regular tooltip, but persists when you press 'F2' (or some key) so that you can copy the contents to the clipboard. Thanks. ...

Tooltip that's not linked to any particular control.

I'm trying to make something like a spellchecker, that will list possible words under the current caret position. I thought I would do this by creating a tooltip, moving it according to the caret's location, and changing the text inside the tooltip. I'm having problems. I'm trying to show the tooltip with tip.Show(form, x, y); However...

Creating a tooltip from a system-tray only app.

So I'm trying to create a tooltip at some point on the screen. ToolTip tip = new ToolTip(); tip.Show("foobar", **IWin32Window window**, new Point(100, 100)) The problem is I don't know what to insert as the window parameter in the above. My app runs entirely out of the system tray, and has no other GUI elements. It's called notifyIcon...

Positioning a div relative to mouse scroll position

All, On some mouse over, div1 is displayed.How to display the div next to the mouse pointer so that even mouseover at the end of the context the div should show up next to the mouse pointer. <style type="text/css"> #div1 { width: 200px; height: 30px; background-color: #a9a9a9; color: #fff; position: absolute; } </style> <script src="jq...

Positioning the div relative to mouse position

All, How to Position the following div relative to mouse position so that the mouse and div are not out ofsync at theend of the page.May be just like a tooltip which always sjows the perfect position at the end of the page.. <style type="text/css"> #div1 { width: 200px; height: 30px; background-color: #a9a9a9; color: #fff; position: ab...

[WPF] ToolTip placement's bug with multimonitor?

I'd like to aligns the tooltip's lower edge with the upper edge of the PlacementTarget, and align the tooltip's left edge with mouse position, I have two screen, both 1920 x 1080, when I ran the program in the main screen, the tooltip jump to the second screen when mouse's x position larger than 770, if I ran it in the second screen...

tooltips for Button

Is it possible to create a tooltip for an html button. Its the normal HTML button and there is no Title attribute as it is there for some html controls. Any thoughts or comments? ...

Jquery to replicate a PHP effect

Hello, Okay i'm trying to do is replicate the same functionality in an HTML page using JQuery to pull in to the page products from my Database. Currently within the PHP version of this process you have your typical PHP call to the DB to connect: <?php define('INCLUDE_CHECK',1); require "connect.php"; ?> Now there is one section of...

How to show hint for a disabled TDBEdit?

I have a TDBEdit that is not enabled and thus not showing the Hint. What would be the best way to have it display the Hint while staying disabled? ...

Tooltips with infinite timeout?

I'm thinking of setting the timeout on all my tooltips in a WinForms application to infinity (or an extremely large value). The motivation is that it's annoying for the user if the tooltip disappears while I'm still reading it, without providing any extra value whatsoever as far as I can tell. Normally I wouldn't ask something like this...

open-source JavaScript onclick tooltip solution required

I've been searching for a long time now for a fairly simple JavaScript based tooltip solution. It needs to be: Open-Source and freely re-distributable, and allows my application to include it which would be distributable via free or commercial license. 'Sticky' i.e when opened it stays visible until the user clicks a little close butto...