Click to See Complete Forum and Search --> : Tooltip From Dropdownlist


dhakshan
05-05-2011, 10:48 AM
Hi Friends,

First of all I dont know whether it's possible without performance issue.

for (int i = 0; i <= ddlusers.Items.Count - 1; i++)
{
ddlusers.Items[i].Attributes.Add("Title", ddlusers.Items[i].Value);

}

I have an dropdownlist. In that i have an tooltip values on mouseover. For each values i have a list of members.I want to list those members in a link button or as a tooltip corresponding to those tooltip values from the dropdown.

Will any one help me ,

donatello
05-05-2011, 04:21 PM
Yes, you can... I'm not sure if I understand precisely what it is you want to do, but I was able to put a bunch of dynamic things into a dropdown menu including a form with a PHP script.

You can go and look at my site here... it's a bit confusing as there are actually two sites - one which displays in IE and a different site for FF and other browsers for technical reasons.

Anyway, feel free to borrow any of the scripts. The page is here:
Make Google My Homepage (http://www.makegooglemyhomepage.com)

The JavaScript file with the magic is here:
http://www.MakeGoogleMyHomepage.com/js/dropdown.js

Good luck.