Binded DropDownList with ToolTip?

Well with some javascript work,it's quite possible. First you create a div inside your html side with mouse out event then some javascript work is required to insure your when you hover you dropdownlist item it shows a tooltip function showtooltip(element) { //select focused elements content to show in tooltip content document. GetElementById("tooltip").

InnerHTML = element.optionselement.selectedIndex. Text; //show tooltip document. GetElementById("tooltip").style.

Display = "block"; } function hidetooltip() { //hide tooltip document. GetElementById("tooltip").style. Display = "none"; } The last part is adding mouse over and out event to your dropdownlist Then it should work.

You may need to add extra style for your tooltip. Hope this helps Myra.

Close, but I want the tooltip for each list item, not only on the selected item. – rob waminal Oct 21 '10 at 7:23 same thing can be implemented on hover effect as well – Myra Oct 21 '10 at 7:46.

Simply call that function after dropdown list binding: BindTooltip(Name of the dropdownlist); public void BindTooltip(ListControl lc) { for (int I = 0; I Text); } }.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions