HI
I have a Dropdownlist inside a TBCustom control in webtoolbar.
How do I get the reference to the dropdownlist in javascript.
Gary
No.
I have created a server control using Ultrawebtoolbar. There is a TBCustom with a dropdownlist inside. How do I reference the dropdownlist from javascript.
Hi Gary,
Do you mean WebDropDown control ?
for Infragistics WebDropDown control you can use
var webDropDown = $find('<%=WebDropDown1.ClientID%>');
for Microsoft DropDownlist
var dropDonwList = document.getElementById('DropDownList1');
Hope this helps