This is a migrated thread and some comments may be shown as answers.

Check/Uncheck RadComboBox items

1 Answer 61 Views
ComboBox
This is a migrated thread and some comments may be shown as answers.
Venkatesh
Top achievements
Rank 1
Venkatesh asked on 24 Aug 2016, 12:15 PM

I have a ASP Dropdown list and Telerik RadComboBox. Both are binding same values.

Now I want to select same value in RadComboBox which user select in ASP Dropdown list.

I have used below codes but RadComboBox always shows previous selcted value only.

 

1.     string Name = ddlList.SelectedItem.Text;

        rcbComboBox.ClearCheckedItems();
        rcbComboBox.Text = string.Empty;
        rcbComboBox.Text = Name;
        rcbComboBox.Items.FindItemByText(Name).Checked = true;

        rcbComboBox.Items.FindItemByText(Name).Selected = true;

 

2.   

1 Answer, 1 is accepted

Sort by
0
Ivan Danchev
Telerik team
answered on 26 Aug 2016, 01:45 PM
Hello Venkatesh,

I replied in the other thread you opened with the same subject. If you have other questions, I would suggest we continue the discussion in it.

Regards,
Ivan Danchev
Telerik by Progress
Do you need help with upgrading your ASP.NET AJAX, WPF or WinForms projects? Check the Telerik API Analyzer and share your thoughts.
Tags
ComboBox
Asked by
Venkatesh
Top achievements
Rank 1
Answers by
Ivan Danchev
Telerik team
Share this question
or