The requirement is to allow the user multiple rows in a combo/ drop down. That is the user will click on drop down there will be a grid with all the values and the user should be able to select (using a checkbox) multiple rows in the drop down.
If the possible?
also what is the difference between a Ulrta Combo and a Drop down
Dim b As New Infragistics.Win.UltraWinEditors.DropDownEditorButton b.Control = Me.UltraGrid1 Me.UltraTextEditor1.ButtonsRight.Add(b)
Hi,
I'm afraid I don't understand the question. I just tried this out by placing an UltraCombo control on a form and adding a DropDownEditorButton to the ButtonsRight collection and the images on the buttons are exactly the same.
In any case, the latest version of the UtraCombo and UltraComboEditor have built-in support for multi-select. So you really don't need to do use the workaround here any more.
Is there a way to make the RightEditorButton have the same icon as the button on a combobox ?
In order to get the functionality of Multiselect combo i've workaround something i.e. I've taken a UltraTextEditor with a RightEditorButton, and .Net's CheckedListBox which is contained within ultraPopUpContainer. Now on EditorButtonClick event of UltraTextEditor Show the ultraPopUpContainer and on the Closed event of ultraPopUpContainer you can get the list of selected items.
HOWTO:Creating a Multi-Select Dropdown Combo for the WinGrid