Multiple Selection in ComboBox
Multiple Selection in ComboBox
Is it possible to make multiple selections in a combobox somehow? I know a Listbox will do it, but it takes up a fixed area of the screen. I want it to "fold away" when not in use like a combobox does....
Multiple Selection in ComboBox
You will have to write own custom control; bBrowser or ListView or DataListView will probably do the trick!
Here is an ideas for you to explore:
Create a SingleLineEdit and push button to right.
On button click, display bBrowser or Listview with yours list items. Populate SLE with items selected separated by a a comma or whatever delimiter. Handle push button folding and population of list accordingly!
Here is an ideas for you to explore:
Create a SingleLineEdit and push button to right.
On button click, display bBrowser or Listview with yours list items. Populate SLE with items selected separated by a a comma or whatever delimiter. Handle push button folding and population of list accordingly!
Multiple Selection in ComboBox
Cool. Thanks Jamal, I feared that would be the case. I'll give it a go. Thanks mate.