Hey you all,
I am in trouble with my radcombox controls.
I use to load my radcombobox on demand with the below script :
protected void rbox1_ItemsRequested(object o, Telerik.Web.UI.RadComboBoxItemsRequestedEventArgs e) { DataTable datatable = new DataTable(); datatable = Load.Mydata(); foreach (DataRow datarow in datatable.Rows) { RadComboBoxItem item = new RadComboBoxItem(); string col1 = datarow["col1"].ToString(); string col2 = datarow["col2"].ToString(); item.Value = col2; item.Text = col1; item.Attributes.Add("MYColumn", col2); rbox1.Items.Add(item); item.DataBind(); } }Now I am using a masterpage in my webapplication. and since, the combobox failed to load several times before loading data in its list( I have to click several times before seeing my data in the dropdown list).
Please help me to go through this blocking point.
Regards,