Hi,
I think there might be a bug in the UltraComboEditor (and maybe the UltraCombo).
I use it with a DataTable as DataSource, AutoCompleteMode SuggestAppend, and it is bound to a column of another DataTable.
At runtime, when I click into the empty Editor and write some letters, and then click on another control in the form, the value isn't updated in the bound DataColumn, so the DataRow is not marked as modified.
This works when selecting AutoCompleteMode None, Append or Suggest, but not with SuggestAppend.
I think this worked without problems before installing the latest service release, but I can't test this at the moment.
Regards
Edit: Tested it with older releases, there is also the same problem.
Hello,
I am glad to hear that you were able to solve your issue.
Please let me know if you have any further questions.
Found the solution.
I bound the DataColumn to the Text property instead of the Value property. In this case DisplayMember and ValueMember were the same so I didn't recognize it.