I need a very simple list with checkboxes (like the checkedlistbox from MS) that accepts multiple selection.
I would like to use a valuelist to populate the items, so that I can be consistent with the way I fill the combo boxes. (The list would only have about 10 options.)
Which is the right control ?
Thanks,
pitV
If you just need a single-value list, then the UltraComboEditor would be the way to go.
Alternately, you could use UltraCombo, but UltraCombo has multiple columns, column headers, etc. So it's a bit more complex.
Here's a link to the help which explains how to do multi-select with UltraComboEditor.
Selecting Multiple Values within WinComboEditor
Thanks for the reply.
Actually I need to display a plain list with check-boxes (like the ultracheckEditor), not a drop-down list.
Do I need the UltraListView for this (it seems overwhelmingly packed with features that I don't need for the purpose) or can I have an UltraCombo displaying like a list without a drop down facility ?
If it has got to be the UltraListview, can you please give an example of how to provide the list items using an Infragistics.Win.ValueList (assigning it to ultraListView1.MainColumn.ValueList does not seem to do the job), and how to read out the lines that the user has checked ?
Thanks again !
Pit