473,779 Members | 1,873 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Tooltip or similar

CJM
I want a semantically-appropriate way of providing a tooltip or similar
mechanism when a user hovers over a particular cell in a table.
Specifically, I have an intranet application that enables users to find out
about tooling equipment, and when they hover over the Board No cell, I want
the location of that board to be displayed in a tooltip or similar.

I think using an ABBR or ACRONYM tag would achieve what I want, but it's not
really semantically correct. Is there something more appropriate, or should
I just use one of these two elements and be damned.

Thanks in advance

CJM
Jun 28 '06 #1
12 1770
CJM wrote:
I want a semantically-appropriate way of providing a tooltip or similar
mechanism when a user hovers over a particular cell in a table.
Specifically, I have an intranet application that enables users to find out
about tooling equipment, and when they hover over the Board No cell, I want
the location of that board to be displayed in a tooltip or similar.


A title attribute on the data cell?

Jun 28 '06 #2
CJM wrote:
I want a semantically-appropriate way of providing a tooltip or similar
mechanism when a user hovers over a particular cell in a table.
Specifically, I have an intranet application that enables users to find out
about tooling equipment, and when they hover over the Board No cell, I want
the location of that board to be displayed in a tooltip or similar.
If the information is important then put it in the always visible
content. Not all users will see it if its only in a tooltip.
I think using an ABBR or ACRONYM tag would achieve what I want, but it's not
really semantically correct. Is there something more appropriate, or should
I just use one of these two elements and be damned.


No. Just use the title attribute on the td element. No need for any
extra elements.

Steve

Jun 28 '06 #3
CJM

"David Dorward" <do*****@gmail. com> wrote in message
news:11******** **************@ j72g2000cwa.goo glegroups.com.. .
CJM wrote:
I want a semantically-appropriate way of providing a tooltip or similar
mechanism when a user hovers over a particular cell in a table.
Specifically, I have an intranet application that enables users to find
out
about tooling equipment, and when they hover over the Board No cell, I
want
the location of that board to be displayed in a tooltip or similar.


A title attribute on the data cell?


Ah yes, of course...

Thanks.
Jun 28 '06 #4
CJM

"Steve Pugh" <st**********@g mail.com> wrote in message
news:11******** **************@ j72g2000cwa.goo glegroups.com.. .
If the information is important then put it in the always visible
content. Not all users will see it if its only in a tooltip.


Everything is importantly to somebody at sometime or other, just not to
everybody all of the time!

I'm trying to avoid clutter, and users will only periodically want this
information. However, I'm trialling it as we speak, and so I'll soon know if
the users want this info in it's own cell or whether the tooltip is
preferred.

Thanks

Chris
Jun 28 '06 #5
CJM <cj*******@REMO VEMEyahoo.co.uk scripsit:
I'm trying to avoid clutter, and users will only periodically want
this information.
But what happens when a user's browser does not support the title="..."
attribute that you intend to use or, more probably, he cannot read its
content comfortably since it is in such a tiny font and in a small popup
that vanishes before he has read it? What happens when you need to write a
title="..." attribute with a value that is longer than normal users can
easily read?

A more robust approach makes the content of a cell (assuming that it is
inline text) a link to the extra information. You might combine this with
the title="..." attribute, perhaps so that the attribute contains a short
version of the info, sufficient for most purposes. The link would guarantee
that the extra info is available to all.

--
Jukka K. Korpela ("Yucca")
http://www.cs.tut.fi/~jkorpela/

Jul 4 '06 #6
CJM

"Jukka K. Korpela" <jk******@cs.tu t.fiwrote in message
news:zR******** **********@read er1.news.jippii .net...
CJM <cj*******@REMO VEMEyahoo.co.uk scripsit:
>
But what happens when a user's browser does not support the title="..."
attribute that you intend to use or, more probably, he cannot read its
content comfortably since it is in such a tiny font and in a small popup
that vanishes before he has read it? What happens when you need to write a
title="..." attribute with a value that is longer than normal users can
easily read?
This application is in an intranet environment, so we do know the
limitations of the browser. However, there are various people with various
abilities (and potentially disabilities) so it's not beyond the realms of
possibility that the user might miss this information. It's only a single
word or a short-phrase, so length is not an issue, but the fact that you
can't otherwise control the tooltip may be an issue.
A more robust approach makes the content of a cell (assuming that it is
inline text) a link to the extra information. You might combine this with
the title="..." attribute, perhaps so that the attribute contains a short
version of the info, sufficient for most purposes. The link would
guarantee that the extra info is available to all.
TBH, If we opt for the link-to-page route I probably wont bother with the
tooltip - in this environment, the richness of an application is not
necessarily a blessing; most prefer there to be just one way to do
everything!

CJM
Jul 5 '06 #7
CJM <cj*******@REMO VEMEyahoo.co.uk scripsit:
This application is in an intranet environment,
This group is about HTML authoring for the WWW, as the name suggests.
so we do know the
limitations of the browser.
You may know what your current browser is. Do you wish to make everything
depend on that choice, even though a clueless (or clueful) boss might decide
tomorrow that for security reason, that browser shall be immediately
abandoned?
However, there are various people with
various abilities (and potentially disabilities) so it's not beyond
the realms of possibility that the user might miss this information.
Indeed. And some disabled employers might need a browser different from the
one you regard as company standard.
TBH, If we opt for the link-to-page route I probably wont bother with
the tooltip -
A link is generally too "heavy" a tool for just showing a word or two, so a
tooltip might be a reasonable alternative, suitable for _most_ users.
in this environment, the richness of an application is
not necessarily a blessing; most prefer there to be just one way to do
everything!
When the tooltip works, the user can use just it. They only need to learn
that although some word looks like a link, it points to the same information
as is available as a tooltip. This shouldn't be too difficult. Looking like
a link is not a problem and might actually be an asset: it suggests that
extra info is available, and then the user learns (in most cases) that it's
really a "quick link" that shows the info on mouseover, without clicking.

--
Jukka K. Korpela ("Yucca")
http://www.cs.tut.fi/~jkorpela/

Jul 5 '06 #8
CJM

"Jukka K. Korpela" <jk******@cs.tu t.fiwrote in message
news:le******** **********@read er1.news.jippii .net...
CJM <cj*******@REMO VEMEyahoo.co.uk scripsit:
>This application is in an intranet environment,

This group is about HTML authoring for the WWW, as the name suggests.
This is old ground as you well know, and has been covered plenty of times in
this NG; c.i.i. gets virtually no traffic, and what is more, the question is
about HTML. The behaviour is the same regardless of the scope of the domain
on which it is hosted.

If I'd wanted to specifically discuss browser issues, there are also
specific NGs available too, yet you missed that objection...
>
You may know what your current browser is. Do you wish to make everything
depend on that choice, even though a clueless (or clueful) boss might
decide tomorrow that for security reason, that browser shall be
immediately abandoned?
We have an IT strategy that has a shelf-life longer than both my application
and IE6 (the browser in question).

But that is beside the point. We have no control over future browsers, nor
over future web technologies and standards. We can't guarantee that any of
our work will survive future changes; all we can do is avoid forseeable
erroneous decisions. In in my case, I haven't made any design choices that
are limiting my options in the future (to my knowledge).
>However, there are various people with
various abilities (and potentially disabilities) so it's not beyond
the realms of possibility that the user might miss this information.

Indeed. And some disabled employers might need a browser different from
the one you regard as company standard.
Quite. Though not the users of this particular application. However, the
point still stands.

Both a tooltip (read 'title' attribute) and an external link are equally
accessible under current standards. If they change, all bets are off.
>TBH, If we opt for the link-to-page route I probably wont bother with
the tooltip -

A link is generally too "heavy" a tool for just showing a word or two, so
a tooltip might be a reasonable alternative, suitable for _most_ users.
This remains to be seen. The project team will make a decision on what is
the best option (or combination of options) in good time, though it is my
job to advise them (not that they always listen!).
>in this environment, the richness of an application is
not necessarily a blessing; most prefer there to be just one way to do
everything!

When the tooltip works, the user can use just it. They only need to learn
that although some word looks like a link, it points to the same
information as is available as a tooltip. This shouldn't be too difficult.
Looking like a link is not a problem and might actually be an asset: it
suggests that extra info is available, and then the user learns (in most
cases) that it's really a "quick link" that shows the info on mouseover,
without clicking.
Now we are getting down to it. Yes, I think this seems logical and
intuitive... the link styling will hint to the user that there is more
information available; if the tooltip is sufficient - great - if not, the
linked page is available. If it was up to me, I would include both since the
extra effort involved is negligible.

But believe me when I say that the users dont like too many alternatives. My
target group aren't very computer literate, aren't very open-minded and are
resistant to change. To we have to tip-toe around them sometimes.

CJM
Jul 5 '06 #9

Jukka K. Korpela wrote:
But what happens when a user's browser does not support the title="..."
attribute that you intend to use
Then they should get themselves a browser that works, where "works" can
reasonably be interpreted as "implementi ng a useful subset of the
standard".

Your usual curmudgeonlines s has surpassed its usual bounds here. You've
gone from picking irrelevant holes in trivia to seemingly advocating
IE4 and working around browser foibles, rather than trying to aim for a
standard. This is the wrong attitude, you know it, and it's no excuse
just for a bit of intaweb ego-waving.

* curmudgeonlines s must be a good Finnish word, because I read it in a
Moomin book at the weekend.

Jul 5 '06 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
2033
by: Stephen | last post by:
Is it possible to add a tooltip in the column of a Datagrid. Can someone please show me how I would do this for the datagrid column below. Thanks for any help anyone can give me. Here is the datagrid coloum which I want to put the tooltip when the user hovers over it. <asp:BoundColumn DataField="ID" SortExpression="ID" HeaderText="ID"> <HeaderStyle ForeColor="White" CssClass="dgHeader"> </HeaderStyle>
0
1542
by: Yves Royer | last post by:
Hi, I'm currently writing an application (in VS 2005 bèta 2) and made some own user controls. In each user control I added a ToolTip object so i can set some tooltips on checkboxes etc. What I wanted to do is to add a ToolTip object on the starting form, and pass this ToolTip object to the user controls. In each user control I created a property ToolTip with only a setter which accepts the passed ToolTip.
0
1567
by: Yves Royer | last post by:
Hi, My first post didn't show up so here's a second try. I'm currently writing an application (in VS 2005 bèta 2) and made some own user controls. In each user control I added a ToolTip object so i can set some tooltips on checkboxes etc. What I wanted to do is to add a ToolTip object on the starting form, and pass this ToolTip object to the user controls. In each user control I
4
3818
by: ljlevend | last post by:
I have the following issues: 1. I want to make it so that ToolTips never go away once they are shown until the user moves the mouse outside of the control for which the ToolTip is assigned. It seems to me that setting the ToolTip.AutoPopDelay to a large value (e.g., Int32.MaxValue) should acomplish this goal, but it does not. 2. I want to make it so that the ErrorProvider message is always displayed when the mouse is over the...
1
1969
by: Steve | last post by:
I want to show a tooltip over one of my WinForm controls at startup. The control is part of a UserControl that I'm hosting in a CAP DeckWorkspace. In other words, I have many user controls that I activate or show by bringing them to the front. I have a tooltip control setup to be a balloon tooltip. Inside the Load event handler for the UserControl I have this code: toolTip_ChangeSearchLocation.Show("Some text.",...
3
7279
by: =?Utf-8?B?UmFq?= | last post by:
I have a very unique requirement, I have to add a tooltip in a grid view control, the tooltip should be similar to this link: http://web-graphics.com/mtarchive/BubbleTooltips.html ...(hover at the link) Do you have any suggestion on this.. Thanks
5
9829
by: =?Utf-8?B?cGV0ZTE5Njk=?= | last post by:
I use Visual Studio 2005 and created a very simple Form with one button. I added a Tooltip for that button. It shows fine the first time I hover over that button. But if I let it disappear by the maximum time it should be displayed, it never shows again over that button. Is that intended? And what can I do to make it show again?
1
7870
by: piercy | last post by:
Hi, ive been trying to produce something using a listview control which shows error messages for the emails sent from my application. Its a wierd concept so im going to try explain it best i can. I want to be able to have 3 items across the listbox each with a icon and a tooltip. Something similar to the below.. Item 1 has a icon next to it and when i hover over it i get a tooltip displaying the error message. Then the same again for items...
0
9632
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9471
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
1
10071
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9925
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
8958
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
6723
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5501
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4036
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
3
2867
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.