We are using 2008 Q3 version of Telerik controls we are facing this problem.
When we are trying to get the rad combo instance at client side on page load and it is not associated with any event like OnClientSelectedIndexChaged then we are not able to get the instance of the Rad Combo Box.We are using the following code block.
Where cboTerms is the Id of my control.
When we are trying to get the rad combo instance at client side on page load and it is not associated with any event like OnClientSelectedIndexChaged then we are not able to get the instance of the Rad Combo Box.We are using the following code block.
Where cboTerms is the Id of my control.
var cboEntityType = $find("<%= cboTerms.ClientID %>");
var item = cboEntityType.get_selectedItem();
var term = item.get_value();
can you suggest some way out for it, as the above code block is working fine when i use it in Selected Index change on client side.