I'm trying to find a RadComboBox on my ASP.Net form using the preferred syntax:
However, the combox box is actually embedded in a user control. How can I reach that RadComboBox using the above javascript function?
This doesn't seem to work:
Where MyUserControl_RadComboBox1 is the unique id in the rendered markup.
Thanks.
var
combo = $find(
"<%= RadComboBox1.ClientID %>"
);
However, the combox box is actually embedded in a user control. How can I reach that RadComboBox using the above javascript function?
This doesn't seem to work:
var
combo = $find(
"<%= MyUserControl_RadComboBox1.ClientID %>"
);
Where MyUserControl_RadComboBox1 is the unique id in the rendered markup.
Thanks.