Zolt
Zolt

Reputation: 2811

DevExpress column a multi select field

I'm trying to create a drop down / combo box in dev express with check boxes, to allow the user to select multiple options.

Something like this:

Untitled

I've found some documentation but nothing that tells me what to do. Can anyone help?

Upvotes: 0

Views: 4276

Answers (1)

Niranjan Singh
Niranjan Singh

Reputation: 18290

Use checkedComboBoxEdit control and use it's drop down list as you want..

Refer - CheckedComboBoxEdit - add AllowMultiSelect property devexpress thread and attached example..

you can easily implement the required logic manually using a piece of code. Simply handle the SelectedIndexChanged event and check the selected items.

Hope this help...

Upvotes: 2

Related Questions