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

[Solved] Related combobind

2 Answers 69 Views
ComboBox
This is a migrated thread and some comments may be shown as answers.
Nagesh Mynedi
Top achievements
Rank 1
Nagesh Mynedi asked on 04 Mar 2010, 05:15 AM
For example i hava two combos.. 2nd combobox with checkboxes.when i select 1st combo then 2 combo bind.....

when i getting problem here


when i change 1st combo  item how can i clear 2nd combo text displayed...


radcombobox1.items.clear() i written   it cleared the items ...but combotext periovs selected data is not cleared....


how can i cleared...

2 Answers, 1 is accepted

Sort by
0
Shinu
Top achievements
Rank 2
answered on 04 Mar 2010, 09:58 AM
Helo Nagesh,

I guess you want to clear the RadComboBox text after clearing the items. If so set the Text property of RadComboBox to empty string as shown below and see whether it helps.

C#:
       RadComboBox1.Items.Clear();

       RadComboBox1.Text =

"";

 


Regards,
Shinu.
0
Kalina
Telerik team
answered on 04 Mar 2010, 11:38 AM
Hi Nagesh Mynedi,

At client-side there is a function clearSeletion() that you can use to clear the selection of RadComboBox.
Please take a look at this example, I believe it is similar to your case.

Kind regards,
Kalina
the Telerik team

Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items.
Tags
ComboBox
Asked by
Nagesh Mynedi
Top achievements
Rank 1
Answers by
Shinu
Top achievements
Rank 2
Kalina
Telerik team
Share this question
or