Extend Timeout on SSRS/BIDS Tooltip

  • Hi,

    Fairly new to this so bear with me please.

    I have a report built in SSRS / BIDS. I have the folllowing tooltip but it only shows for about 5 seconds or so .

    Does anyone know how i can extend the timeth etooltip is visble.

    Thanks

    =

    "IP/OP Flag....." & Fields!flag.Value & vbcrlf &

    "Pathway ID....." & Fields!pathwayid.Value & vbcrlf &

    "Period........." & Fields!periodid.Value & vbcrlf &

    "Patient CRN...." & Fields!crn.Value & vbcrlf &

    "Consultant Code" & Fields!consultant.Value & vbcrlf &

    "Spec Code......" & Fields!specialty.Value & vbcrlf &

    "Spec Desc......" & Fields!Spec_Desc.Value & vbcrlf &

    "Clock Start...." & Fields!clockStart.Value & vbcrlf &

    "Clock Stop....." & Fields!clockStop.Value & vbcrlf &

    "RTT Days......." & Fields!rttDays.Value & vbcrlf &

    "Clk St Reason.." & Fields!clockStartReason.Value & vbcrlf &

    "Clk Sp Reason.." & Fields!clockStopReason.Value & vbcrlf &

    "Nullified......" & Fields!nullified.Value & vbcrlf &

    "Spell No......." & Fields!spellNo.Value & vbcrlf &

    "IP WL No......." & Fields!ipWlNumber.Value & vbcrlf &

    "RTT NET Days..." & Fields!rttNetDays.Value & vbcrlf &

    "Weeks Wait....." & Fields!weeks_wait.Value & vbcrlf &

    "WL Status......" & Fields!Exception_WL_Status.Value

  • This is a problem with IE.

    SSRS uses the <Title> tag in the generated html for tooltips, which is subject to a setting on your machine. It's not a setting that you can change either in the report or on the report server. From previous research there is supposed to be a registry entry that controls the bubble tool tip delay but the only ones I've been able to find are for the explorer tray and the start menu, not for IE.

    I've tested tooltops in both Chrome and Firefox, and the tooltips in there stay on screen for ages as long as you hover over the cell. They also re-appear if you move the mouse away and back, unlike IE which only shows them once. It's frustrating that IE doesn't do that given that if you are using SSRS in your organisation then chances are they are using IE as well.

    The workaround as suggested by MSFT is to use javascript. I love how the guy from MSFT seems to be channeling clippy there.

    There are a few ways to do that, either by injecting javascript into your page [/url]or by using a reportviewer control in a custom web application to display the report.

    A really simple workaround is to use an alert (window pops up that requires you to press OK to close it).

    Personally I think Chrome is the better workaround, many reports don't render properly in Firefox so that's not a solution. The real answer would be for MSFT to fix the <Title> tag behaviour of IE, but it's been a problem for years and there is probably some reason they don't do it. They could either provide an easy setting to modify, or ideally make it indefinite. The worst part is that it displays for 5 seconds and then you can't get it back without refreshing the report!

Viewing 2 posts - 1 through 1 (of 1 total)

You must be logged in to reply to this topic. Login to reply