Tool tip for combobox..., [modified]
-
Hi in my html page i have one combobox..., In that i have list of values..., Its showing the tooltip after select the value from that combobox..., But i like to show when the user click that combo and he will go line by line records that time i like to show each and every record tooltip..., Not only for html control combo,if its possible in dropdownlist(.net control) also no probs, How to do that?, Urgent need hlp me..., -- modified at 1:12 Tuesday 4th September, 2007
Regards, Magi
-
Hi in my html page i have one combobox..., In that i have list of values..., Its showing the tooltip after select the value from that combobox..., But i like to show when the user click that combo and he will go line by line records that time i like to show each and every record tooltip..., Not only for html control combo,if its possible in dropdownlist(.net control) also no probs, How to do that?, Urgent need hlp me..., -- modified at 1:12 Tuesday 4th September, 2007
Regards, Magi
Hi Please specify your combobox's "Auto postback" property is true or not? if true u can write code in code behind otherwise u can do it from Javascript. I Have another question is it ur control is combo or ListBox ? beacause listbox only have multi selection Regards R.Palanivel
r_palanivel83 10:01 4 Jan '06
-
Hi Please specify your combobox's "Auto postback" property is true or not? if true u can write code in code behind otherwise u can do it from Javascript. I Have another question is it ur control is combo or ListBox ? beacause listbox only have multi selection Regards R.Palanivel
r_palanivel83 10:01 4 Jan '06
In any mode, I need that tooltip for each items..., May be postback also no probs or in javascrip also no probs, Plz send me -- modified at 1:59 Tuesday 4th September, 2007
Regards, Magi
-
In any mode, I need that tooltip for each items..., May be postback also no probs or in javascrip also no probs, Plz send me -- modified at 1:59 Tuesday 4th September, 2007
Regards, Magi
Add this code on "Page Load" DropDownList1.Attributes.Add("onchange","fnToolTip()"); ---------------- Add this javascript code on HTML Code view function fnToolTip() { selIndex=document.getElementById("DropDownList1").selectedIndex selValue=document.getElementById("DropDownList1").value // alert(selValue) document.getElementById("DropDownList1").title=selValue } ------------------- Add this code on Body ITEM1 ITEM2 ITEM3 ITEM4 -------------------- Try this should work fine Regards R.Palanivel r_palanivel83 10:01 4 Jan '06