Hello, Just a quick question.
I have a Ultra Combobox editor databound to a bindingsource, with the display value linked to a name field in my db and the datavalue set to the record id.
My question is that selection of different combo items do not change my row position in my table.
I do exactly the same thing with a standard comb control and a change in selection will change the record position in my table.
The ultra win grid changes the record postion in my table - so, is it possible to set the ultra combo editor to move the record position in the underlying datatable.
Thank you...
UltraCombo doesn't automatically synchronize the position of the BindingManager because this is sort've a weird thing to do. A Combo really has two main functions. One is selection of a value and the other is navigation. If you are using a combo to select a value, it's not always obvious that the MS Combo is also navigating, so the UltraCombo does not do this by default.
To make it do so, set the SynchWithCurrencyManager property to true.
That's it, what I was looking for. [:'(]
Thanks