All Telerik .NET tools and Kendo UI JavaScript components in one package. Now enhanced with:
Here is my code:
RadComboBox sample= this.Master.FindControl("ContentPlaceHolder").FindControl("rcb1") as RadComboBox; sample.SelectedValue = 1; It doesn't select any values on my combobox. Did i make any mistake? I really dont know what to do next.
RadComboBox sample= this.Master.FindControl("ContentPlaceHolder").FindControl("rcb1") as RadComboBox;
sample.SelectedValue = 1;
RadComboBox combo = (RadComboBox)
this
.Master.FindControl(
"RadComboBox1"
);
combo.SelectedValue =
"1"
;