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

Multi Select

2 Answers 241 Views
ListControl
This is a migrated thread and some comments may be shown as answers.
Celeste Zietsman
Top achievements
Rank 2
Celeste Zietsman asked on 01 Apr 2011, 08:38 AM
Hi

Is it possible to do a multi select on a RadDropDownList or a RadMultiColumnComboBox?

Thanks
Celeste

2 Answers, 1 is accepted

Sort by
0
Accepted
Richard Slade
Top achievements
Rank 2
answered on 01 Apr 2011, 12:16 PM
Hello,

If you need multiselection, you'd need to use a RadListControl (as opposed to a RadDropDownList) or RadGridView (as opposed to RadMultiColumnComboBox).

Because the RadDropDownList only has a single area to display a value, only one selection can be made.

In RadListControl, you can change the selection mode to 2 different multi selection modes as follows
this.radListControl1.SelectionMode = SelectionMode.MultiSimple; // or
this.radListControl1.SelectionMode = SelectionMode.MultiExtended;

Hope that helps
Richard
0
Celeste Zietsman
Top achievements
Rank 2
answered on 05 Apr 2011, 07:58 AM
Thanks
Tags
ListControl
Asked by
Celeste Zietsman
Top achievements
Rank 2
Answers by
Richard Slade
Top achievements
Rank 2
Celeste Zietsman
Top achievements
Rank 2
Share this question
or