473,413 Members | 1,856 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,413 software developers and data experts.

How to display an individual tooltip for each item in a listbox (select box)

Hello,

Using MSIE 6.0 and above, with javascript is it possible to display an
individual tooltip for each item in a listbox?

I need this functionality to show the listitems that are longer than the
listbox size.

Please refer to this link to get the idea of what I would like to do.
Unfortunately this one is for VB.

http://www.codeguru.com/vb/controls/...cle.php/c2767/

Is there any event that I can catch when I am moving between the items
in listbox selection? Is it possible to get the value of the item
currently selected while expanding the listbox?

Thanks in advanced.

rgs,
hiroshi

*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!
Jul 23 '05 #1
5 14010
hiroshi ochi wrote:
Is there any event that I can catch when I am moving between the items
in listbox selection? Is it possible to get the value of the item
currently selected while expanding the listbox?


While onMouseOver works on the Select tag it doesn't work on the
individual items in the option tags (In IE anyway). This means you
can't really use a select box to do what you want to do. Fortunately
you can simulate this effect.

Create a new HTML page and have it be nothing but your select list
as
<A HREF="javascript:parent.boxClick(1)">A really, really, really long
list item 1</A>
<A HREF="javascript:parent.boxClick(2)">A really, really, really long
list item 2</A>
etc.

Now use an iframe on your main page to display your list (as narrow as
you want as large as you want). To prevent horizontal scrolling in your
iframe in your <BODY> in the list (not the main page) do this... <body
style="overflow-x:hidden; overflow-y: auto;">

On your main page create a function called boxClick(value) that sets the
value of a hidden field. When the user clicks in the iframe it will
call boxClick on your main page with the value the user clicked on.

Now as for the individual tooltips there's already a very powerful
pre-existing flyover tooltip maker at http://www.bosrup.com/web/overlib/
-- in your list html just include the overlib.js script, and set
onmouseover and onmouseout events for each link as described in the
documentation.

It's a lot of work to get around a failing in IE but it can be done and
in a way that will remain true to your vision.

Hope this helps you out a bit.
Jul 23 '05 #2
pcx99 wrote:

<--snip-->
Create a new HTML page and have it be nothing but your select list
as
<A HREF="javascript:parent.boxClick(1)">A really, really, really long
list item 1</A>
<A HREF="javascript:parent.boxClick(2)">A really, really, really long
list item 2</A>
etc.


http://www.jibbering.com/faq/#FAQ4_24

Better would be:

<a href="URLToGoToWithJSDisabled.html"
onclick="parent.boxClick(this.href)">A really.........</a>

And simply pass the href property, and have boxClick navigate accordingly.

--
Randy
Chance Favors The Prepared Mind
comp.lang.javascript FAQ - http://jibbering.com/faq/
Jul 23 '05 #3
Thanks pcx99 and Randy for your reply and information.

If possible, I would like to avoid using iframe because there will be
too much amendment I have to do in my application.

The main problem I am facing right now is that the width I can assign
for each listbox is limited, but the text contents of each items in
listbox is pretty long. Thus, it will be hard for user to select items
that looks the similar.

First, I thought of using tooltip to assist user to select, but then I
got another simpler idea by using <span> to wrap the <select> tag. I
just set the <span> width to a certain value, and not restricting the
width in the <select> part.

Please take a look at the sample code below (tested in MSIE 6.0):
<!-- start sample code -->
<html>
<script>
function setLabelSpan(element){
var label = document.getElementById('labelSpan');
label.innerHTML=element.options[element.selectedIndex].text;
}
function setLabelNoSpan(element){
var label = document.getElementById('labelNoSpan');
label.innerHTML=element.options[element.selectedIndex].text;
}
</script>
<body>
<form >
<table border="1" bordercolor="#000000">
<tr>
<td nowrap>Using Span </td>
<td><span style="overflow:hidden;width:150px">
<select name="select" border=0 onchange="setLabelSpan(this)">
<option value="">Select Product Code</option>
<option value="100">AE000 : Johnson's Baby Lotion (A/V)(G) -
100mlx24 </option>
<option value="101">AE001 : Johnson's Baby Lotion (A/V)(G) -
200mlx24 </option>
<option value="102">AE002 : Johnson's Baby Lotion (A/V)(G) -
400mlx24 </option>
<option value="103">AE003 : Johnson's Baby Lotion (A/V)(G) -
800mlx24 </option>
<option value="104">AE004 : Johnson's Baby Lotion (A/V)(G) -
100mlx72 </option>
<option value="105">AE005 : Johnson's Baby Lotion (A/V)(G) -
200mlx72 </option>
<option value="106">AE006 : Johnson's Baby Lotion (A/V)(G) -
400mlx72 </option>
<option value="107">AE007 : Johnson's Baby Lotion (A/V)(G) -
800mlx72 </option>
<option value="108">AE008 : Johnson's Baby Lotion (A/V)(N) -
100mlx24 </option>
<option value="109">AE009 : Johnson's Baby Lotion (A/V)(N) -
200mlx24 </option>
<option value="110">AE010 : Johnson's Baby Lotion (A/V)(N) -
400mlx24 </option>
<option value="111">AE011 : Johnson's Baby Lotion (A/V)(N) -
800mlx24 </option>
<option value="112">AE012 : Johnson's Baby Lotion (A/V)(N) -
100mlx72 </option>
<option value="113">AE013 : Johnson's Baby Lotion (A/V)(N) -
200mlx72 </option>
<option value="114">AE014 : Johnson's Baby Lotion (A/V)(N) -
400mlx72 </option>
<option value="115">AE015 : Johnson's Baby Lotion (A/V)(N) -
800mlx72 </option>
</select>
</span> </td>
</tr>
<tr>
<td nowrap>Without Span </td>
<td>
<select name="select" style="overflow:hidden;width:150px" border=0
onchange="setLabelNoSpan(this)">
<option value="">Select Product Code</option>
<option value="100">AE000 : Johnson's Baby Lotion (A/V)(G) -
100mlx24 </option>
<option value="101">AE001 : Johnson's Baby Lotion (A/V)(G) -
200mlx24 </option>
<option value="102">AE002 : Johnson's Baby Lotion (A/V)(G) -
400mlx24 </option>
<option value="103">AE003 : Johnson's Baby Lotion (A/V)(G) -
800mlx24 </option>
<option value="104">AE004 : Johnson's Baby Lotion (A/V)(G) -
100mlx72 </option>
<option value="105">AE005 : Johnson's Baby Lotion (A/V)(G) -
200mlx72 </option>
<option value="106">AE006 : Johnson's Baby Lotion (A/V)(G) -
400mlx72 </option>
<option value="107">AE007 : Johnson's Baby Lotion (A/V)(G) -
800mlx72 </option>
<option value="108">AE008 : Johnson's Baby Lotion (A/V)(N) -
100mlx24 </option>
<option value="109">AE009 : Johnson's Baby Lotion (A/V)(N) -
200mlx24 </option>
<option value="110">AE010 : Johnson's Baby Lotion (A/V)(N) -
400mlx24 </option>
<option value="111">AE011 : Johnson's Baby Lotion (A/V)(N) -
800mlx24 </option>
<option value="112">AE012 : Johnson's Baby Lotion (A/V)(N) -
100mlx72 </option>
<option value="113">AE013 : Johnson's Baby Lotion (A/V)(N) -
200mlx72 </option>
<option value="114">AE014 : Johnson's Baby Lotion (A/V)(N) -
400mlx72 </option>
<option value="115">AE015 : Johnson's Baby Lotion (A/V)(N) -
800mlx72 </option>
</select>
</td>
</tr>

</table>
<br> Selected Value using span = <span id="labelSpan"></span>
<br> Selected Value without span = <span id="labelNoSpan"></span>
</form>
</body>
</html>

<!-- end sample code -->
The row 'without span' in the table is what the original looks like, and
row 'using span' is after using the span.

I hope this one idea can help another people too.

thanks,
hiroshi
*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!
Jul 23 '05 #4
hiroshi ochi wrote:
Hello,
Using MSIE 6.0 and above, with javascript is it possible to display an
individual tooltip for each item in a listbox?

<snip>

If you don't mind using a div, and document.getElementById which has
limited browser support, take a look at this page (see last code
example). It updates the text in a div. If you want you can track the
mouse, move the div to the right of the mouse and make it visible when
it is over the select options, make bkg yellow to look like a VB tooltip
if you want.

http://www.experts-exchange.com/Web/..._20942527.html

Mike

Jul 23 '05 #5
Hello Mike,

Thanks for the information.

I tried the code you mentioned. Yes this behaviour imitates the vb
example that I refered.

I think this one is very handy in a listbox with size more than 0.
Unfortunately, in this particular problem, I have to handle the listbox
with size 0. My apologies for not explaining this in advanced.

But I believe I still can utilize this in other part of my application.
Thanks very much!

rgs,
hiroshi

*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!
Jul 23 '05 #6

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

Similar topics

1
by: SHYAM SUNDAR E G | last post by:
hi, I want to display tooltip when Hovered on the Combo Box. like, once if we click on the combo, displays all items in the Combo, when i move the mouse on each item, it has to display the tooltip...
2
by: C Chang | last post by:
When I used the tooltip box to display tip message on a label or an image next to an input box or several input boxes nearby, the part of the tip will be covered by the area of the input box....
4
by: Colleyville Alan | last post by:
I am trying to use a list box to allow users to select items, the results are queried based on the selection and written to a spreadsheet. If the item already exists on their current spreadsheet,...
3
by: Paul T. Rong | last post by:
I have a listbox (of product names) control on my form. I want to pass the selected item (a product name) to a subform, and the product unitprice should apear automatically next to the product name...
18
by: Alpha | last post by:
Hi, I'm working on a Windows applicaton with VS 2003 on windows 2000. I have a listbox that I have binded to a dataset table, "source" which has 3 columns. I would like to display 2 of those...
3
by: Shiju Poyilil | last post by:
Is there anyway to assign tooltip dynamically to the list items in the listbox in asp.net. Rgds Shiju
4
by: NewAlias | last post by:
How to display comments for each enum entry? 'Enum example with commnents commented Private Enum MyEnum YourName =1 ' Set this to get your real name YourAge=2 ' Set this to get your real age...
5
by: Academia | last post by:
(If you've seen this in the drawing NG, sorry. I inadvertently sent it there.) I have a listbox populated with Objects. The Class has a String field that ToString returns. I assume that...
4
by: SenileOwl | last post by:
I'm working with Visual Basic .Net 2005 I'm trying to create a tooltip for a bound listbox and a combobox. I want the tooltip to be of the item the mouse is hovering over. Is there an easy way...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
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,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
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...
0
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...
0
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...

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.