I am wondering how I can access the combo box input text box? The reason is I would like to add some custom attribute to the input text box. Please let me know if anyone has clue. It looks like they protected the input text box from public access.
Chris
2 Answers, 1 is accepted
0
Veselin Vasilev
Telerik team
answered on 26 Jun 2008, 07:20 AM
Hello Chris,
You can access the input DOM element by the following way:
var combo = $find("<%= RadComboBox1.ClientID %>");
var inputElement = combo.get_inputDomElement();