Hi,
I want to use a combo that will display multi columns.
I tried to use the ultraDropDown for this purpose, but also with no success.
Is there a way to do it with UltraCombo or UltraDropDown that is Not attached to a grid?
Thanks ahead,
Yael
Hi Yael, This is strange, there is no reason to see only one column. Can you verify that you are receiving dataTable with multiple columns in your binding source. Or if you change it somewhere in the code? I will take a look on your code if you manage to attaché your sample ? Sincerely,DimiDeveloper Support EngineerInfragistics, Inc.
Thanks for your answer.
I tried to do the following:
ultraCombo1.DataSource = bsYears;
ultraCombo1.ValueMember =
"iCode";
ultraCombo1.DisplayMember =
"dtYears";
Still, I could see in the combo only one column. :(
I also tried to read the explanation you mentioned but I didn't find there an answer.
Do you have an idea what am I doing wrong?
Thanks,
Hello , Yes, there is a component UltraCombo you can simply set DataSource to it like a DataTable with multiple columns and you will be able to see it in the combo.You can also set DisplayMember and Value member. this.ultraCombo1.DataSource = dt; this.ultraCombo1.DisplayMember = "DT1"; this.ultraCombo1.ValueMember = "DT2";See more details in online help page:http://help.infragistics.com/Help/NetAdvantage/WinForms/2009.2/CLR2.0/html/Infragistics2.Win.UltraWinGrid.v9.2~Infragistics.Win.UltraWinGrid.UltraCombo.htmlI hope this helps.Sincerely,DimiDeveloper Support EngineerInfragistics, Inc.