Hello,
I am using SfComboBox with a 2-dimensional array as DataSource.
I want to use AutoCompleteMode with Append.
So far no problem.
But as soon as I set the SelectedValue to have a specific default value in the combobox the AutoComplete function is not working _at first_ keyboard input.
When I leave and enter the combobox again, AutoComplete is working absolutely as it should.
This is only when setting _SelectedValue_ at runtime. (SelectedIndex no problem, but I need to pre-set the Value)
Regards
Dennis
btw, this is my example code:
Public oData As New Dictionary(Of Integer, String)() From {
{0,"Aaaa"},
{1,"Bbbb"},
{2,"Cccc"}
}
SfComboBox1.ValueMember = "Key"
SfComboBox1.DisplayMember = "Value"
SfComboBox1.DataSource = New BindingSource(oData, Nothing)
SfComboBox1.SelectedValue = 2
SfComboBox1.AutoCompleteMode = AutoCompleteMode.Append
Thank you very much.