tooltip

Stuck on an interactive map.

SO, I am getting down to the wire on a deadline for an HTML/Flash hybrid interactive map, and it is not anywhere near finished. I keep getting close to solving each problem, only to discover more bugs. Most of them are quite obvious when you look at the work. I would like to at least squash the big bugs, so I am VERY appreciative of any ...

Adding Screentips to a label

Hello. I know it is possible to add a tooltip to just about every element in Visual Studio, but I was wondering if anyone knew if it was possible to add screentips to a label? I have 5 images I'd like to trigger when the user hovers their mouse above the element (a label). I have 5 labels: Form, Crown, Trunk, Root Flare, and Roots and 5...

Show WPF Tooltip if needed

I have a TextBlock inside a limited-size control. If the text is too long to fit into the control, I'd like to show a tooltip with full text. This is a classic behavior you surely know from many apps. I tried using a Converter to convert TextBlock width into Tooltip's Visibility. <GridViewColumn.CellTemplate> <DataTemplate> ...

XAML tooltips are being clipped

I am trying to make a WPF app (regular Windows app, not XBAP or Silverlight). I want the main app window to support transparency, and show through the desktop below. But when I specify ToolTip text on a Button, the ToolTip appears beneath (z-order) the main window! I have a screenshot where: * Another app overlapps and blocks view of t...

Showing a tooltip on a combobox from the itemtemplate (WPF)

I have a ComboBox with a DataTemplate. The DataTemplate has two controls, each of which has a ToolTip attached to it. The list of items of the ComboBox has the tooltips as expected when you hover over each control. But the selected item area on top of the ComboBox does not display the tooltips, though the controls are rendered as expecte...

Image Control with Tool Tip

I'm creating a WPF application in c# and I have an image control with an image. I want it to show an tooltip with image and text when the mouse if hovering over it. So how do I make a tooptip with an image when the mouse is hovering over it. Thanks in advance to any help. ...

Setting tooltip width and height dynamically

In WPF (C#) is there a way to set the tooltip's height and width dynamically (meaning in code). Thanks for the help. System.Windows.Controls.Image td = new System.Windows.Controls.Image(); BitmapImage myBitmapImage = new BitmapImage(); myBitmapImage.BeginInit(); myBitmapImage.UriSource = new Uri(Directory.GetCur...

Customizing Datapoints in silverlight charts

Hi, I am working on a silverlight application that pulls in objects from a web service and dynamically populates a chart (lineseries) based on object attributes. The problem is that I have too many datapoints (dots) on the lineseries and I was wondering if there is a way to remove them. I used Setter to collapse the visibility of the d...

WPF Adding a Tooltip to the Track of a Slider

I have added a tooltip (shown below) to the track in the slider template, but rather than binding to the current value of the slider, I would like to bind to the value corresponding to the "track value" the mouse is over. Similar to what the youtube video slider allows. So the user can mouseover the track and also see the corresponding v...

Good Javascript plugin to display tooltip briefly on page load

Hi, I need a plugin which highlights/points to a div box on the page on page load. The tooltip should then be able to be closed and/or will disappear after a few seconds. I am having difficulty finding one, as all the current ones seem to require the mouse to hover over the intended target. Are there any plugins that people recommend o...

Sub-classing TreeView in WinForms for mouse over tool tips

Ok, this is a weird one. The expected behaviour for a TreeView control is that, if ShowNodeToolTips is set to false, then, when a label for a tree node exceeds the width of the control (or, more accurately, it's right hand edge is past the right hand edge of the client area), then a tooltip is shown above the node showing the full item'...

WinForms: Why does my tooltip never come back?

I'm having a problem getting the tooltip on my form. Once it disappears it never seems to come back! Excerpt from the InitializeComponent method: // // toolTip // this.toolTip.AutoPopDelay = 60000; this.toolTip.InitialDelay = 500; this.toolTip.ReshowDelay = 100; After the InitializeComponent method has been called: toolTip.SetTool...

Diagram element tooltips in a Nevron diagram

I'm trying to find a way to show a tooltip when the user mouses over a particular diagram element of a Nevron diagram. Far as I can tell, the NDiagramElement itself doesn't support tooltips. I've tried creating a label and showing it at the mouse position and played around with the System.Windows.Forms.ToolTip class (giving it the form...

Gridview tooltip

Hi All, if (e.Row.RowType == DataControlRowType.Header) { int i = 0; foreach (TableCell cell in e.Row.Cells) { cell.Attributes.Add("title", reason[i]); i++; } } i am using this code to show tool tip in grid view.Tool tip is getting display...

Display a javascript/css tooltip within a @For loop with Tapestry 4.0.1

I'm not at all familiar with Tapestry 4.0.1 and need to update a legacy application to display a formatted tooltip for a few links within a @For loop. What is the easiest/best way to go about accomplishing this? Should I be using the @Script component or is there a simpler way? By the way, upgrading to a newer version of Tapestry is ou...

WPF tooltip virtualization

Hi! Is there any way to virtualize tooltip in WPF? I have many dataitems displayed on map. When i'm changing template, for example, it takes a lot of time to generate UI for tooltips that are invisible. Maybe wpf supports something for such cind of virtualization? Thanks in advance. ...

jQuery tooltip follow mouse

I've been using this script http://jqueryfordesigners.com/coda-popup-bubbles/ and trying to use this fix to position the bubble according to where the user's mouse is on the page: $([trigger.get(0), info.get(0)]).mouseover(function (e) { if (hideDelayTimer) clearTimeout(hideDelayTimer); if (beingShown || shown) { // don't trigg...

How can I display a different ToolTip based on the DataContext DataType in Wpf?

I have an abstract UserControl that I want to show a ToolTip on. This ToolTip should be different based on the Type of the DataContext which is defined in the derived UserControls. Is there a way to define a different ToolTip for each type in the base class? If not, how can I set this ToolTip in the derived UserControl? Here is how I ...

jQuery - Ajax ToolTip, would like to pull URL instead of static image

Using code from this site this.screenshotPreview = function(){ /* CONFIG */ xOffset = 10; yOffset = 30; // these 2 variable determine popup's distance from the cursor // you might want to adjust to get the right result /* END CONFIG */ $("a.screenshot").hover(function(e){ this.t = this.title; ...

jQuery tooltip not working as expected - REVISED

Hello all, Ok I fixed the original problem but I would like now is to add the title value back to the anchor tag of id="contact" from the id="contact-info" popup before I remove the popup The JS this.contactPreview = function() { jQuery("a.contact").click(function(e){ this.t = this.title; this.title = ""; var c...