Click here to Skip to main content
15,923,789 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Dear
,
I have a problem in Rad comobox,

I fill radcombobox based on another drop down event,for default  value like "--select--" showing in radcombobox,appenddatabound property used true.
I have faced problem when fired first dropdown each & every time radcombobox filled with previous data.I have used
 if (cmbProduct.Items.Count > 0)
            {
                cmbProduct.Items.Clear();
            }
            cmbProduct.Items.Insert(0, new RadComboBoxItem("-Select-", string.Empty));

          cmbProduct.DataTextField = "ProductName";
          cmbProduct.DataValueField = "product_id";
          cmbProduct.DataSource = sdsProduct;//-----datasource
          cmbProduct.DataBind();//---here i got problem parameter out of range.

Please help how can i over come this problem.
Best Regards,
Mahmud 
Posted
Updated 24-Aug-13 19:13pm
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900