In my WPF project, I have in XAML bound an object to the SelectedItem in a SfTextBoxExt control to a capture the selected object which was chosen (not just text, this is bound to an object).
The object gets bound correctly when I type into the control and select an item from the list using the mouse, but not when I type in tab to accept the suggested item - the set on the underlying property does not get called.
I need to be able to bind the object either by choosing via the mouse or by tabbing. Any ideas what I need to do to get the binding to work via the tab event?
Many thanks!
(The AutoCompleteMode is SuggestAppend)