I binded an UltraComboEditor to a List<string> via UltraComboEditor 's DataSource property.
When an item is selcted in the UltraComboEditor the corresponding List's Current property points to null. It should point to the selected item in the list.
Is there some otherUltraComboEditor property that should be used to so the Current property is updated? ;
Hello,
Could you please try the following line:
this.ultraComboEditor1.SyncWithCurrencyManager = true;
Please do not hesitate to contact us if you need any additional assistance.
Ok thanks. WPF has an attribute setting as well for Sychronization with the IEnumerator's Current Property.
Hi,
You are right. I believe that you are referring to the 'IsSynchronizedWithCurrentItem' property, which I think does the same job in this situation.
Please let me know if you have any other pending questions.
Setting SyncWithCurrencyManager to true did not work. I reposted this problem again.
Setting the SyncWithCurrencyManager to true did not synchronise the row selection with the List's Current property.