I'm guessing the answer is no but I thought I'd ask here just to be sure.
I've put together an UltraComboEditor in conjunction with a plain ol LIST and a VALUELIST and that works fine.
I'd +LIKE+ to be able to bind it to a UltraDataSource to virtualize the list. But that doesn't appear to work.
So question is, is it supposed to, and I'm just doing it wrong? Or is this combination simply unsupported?
And a follow on to that is, if it's not supported, isn't there a way to use an UltraGrid as the dropdown area of the UltraCombo? I could have sworn I've seen this done, but I can't find any examples or discussion of it now that I'm looking for it.
Many thanks!
Darin
Yes, you can bind UltraComboEditor to UltraDataSource. But since UltraDataSource can have more than one band, you probably need to bind to the root band:
this.ultraComboEditor1.DataSource = this.ultraDataSource1.Band
If you want a multi-column dropdown that looks like UltraWinGrid, make sure you are using UltraCombo, not UltraComboEditor.