Hello to all,
I'm confused about the example about the UltraComboEditor:
https://ko.infragistics.com/samples/windows-forms/combo/column-drop-down
You can find this example also in the local installed Inftragistics example projects.
In both source codes is a UltraComboEditor used and a multi column behavior advertised.
But I can't find any configuration/implementation descriptions to change the combobox from single Value list to multi column.
What I need is a Combobox as a form field (not in a grid) with multi columns or multile lines for each item.
I hope you can help me out :-)
kind regards,
B.
Hello Grunwald,
Your question is a little bit confusing. Do you mean that you bind an UltraComboEditor to a ValueList and you want to display it as Multicolumn Dropdown? In order to display multiple columns, you have to bind the editor to a DataTable or an ArrayList as in the example.
If this is not what you are asking, please specify which control you are using, what is its DataSource and what do you want to achieve.
Hello Planema,
thanky you for your answer.
I'm running Infragistics 2017.1
What I want is a multi column combobox in a windows form.
Like in the screen shot in this online example:
The same example you can also find in the local installed Infragistics examples:
But running this example only shows a single column Combo:
The Implementation using a DataTable
What is to do to have a multi column combo in your own example like it is advertised by you ;-)
Kind regards,
Karol
The UltraComboEditor can only display a single column at a time, as does a ValueList. You will need to use either UltraDropDown or UltraCombo control instead.
Attached is a sample project with UltraCombo, which DataSource is set to the DataTable(dataTableOfComposers) from the example.