Lets consider that your RadComboBox is in ItemTemplate.
So here $find(<%=RadComboxID.ClientID%>); will not work as the control is in item template.
- We need to first find the radcombobox
- Get the id of it
- And then use it with $find()
- Now you can use the inbuilt telerik methods on the object of radcombobox
var RadComboxID= $("[id$='RadComboxID']").attr("id");
var objradcombobox=$find(RadComboxID); //Here you got the object of RadComboBox
objradcombobox.get_selectedvalue(); //use telerik methods with radcombox object
No comments:
Post a Comment