SfComboBox: first Autocomplete not working after setting SelectedValue

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


6 Replies

DN Dennis Neuhaeuser December 2, 2021 11:09 PM UTC

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




EM Elakkiya Muthukumarasamy Syncfusion Team December 3, 2021 09:27 AM UTC

 
Hi Dennis, 
 
Greetings from Syncfusion. 
 
We have checked the reported issue " AutoComplete not working properly while setting Selectedvalue as runtime" and confirmed it is a defect. We have logged a report on this and the patch for this fix is estimated to be available on 24th December 2021.   
Please let us know if you need any further assistance.   
 
Regards, 
Elakkiya 



DN Dennis Neuhaeuser December 6, 2021 06:00 PM UTC

Thank you very much.




TB Thirupathi Bala Krishnan Syncfusion Team December 22, 2021 11:12 AM UTC

Hi Dennis, 
 
We fixed the reported issue “AutoComplete not working properly while setting Selectedvalue as runtime” on our end. The code changes will be included in our upcoming weekly NuGet release which is scheduled for December 28th, 2021. Could you please confirm your exact product version if you want the patch file for one of our prior versions? We'll integrate the code changes based on your confirmation. 
 
Regards, 
Thirupathi B. 



TB Thirupathi Bala Krishnan Syncfusion Team December 28, 2021 11:39 AM UTC

Hi Dennis, 

We have fixed the reported issue but we need to confirm the possible automations on our end. As a result, we won't be able to include the code changes in the current weekly nuget release. The code changes will be included in our upcoming weekly nuget release which is scheduled for January 4, 2022. We’ll let you know once the changes has been published in nuget.org. We appreciate your patience until then.  

Note: If you want the patch in any of our most recent versions, please specify the exact syncfusion product version, and we will merge the code changes into your version. 

Regards,
Thirupathi B. 



TB Thirupathi Bala Krishnan Syncfusion Team January 4, 2022 01:39 PM UTC

Hi Dennis,   
   
The reported issue "AutoComplete not working properly while setting Selectedvalue as runtime" has been resolved, and the code changes have been included in our most recent weekly nuget version 19.4.0.41. The reported Nuget packages have been published on nuget.org. The packages can be downloaded from the following link.  
   
Nuget link: https://www.nuget.org/    
   
Please let us know if you need any further assistance.   
   
Regards,   
Thirupathi B. 


Loader.
Up arrow icon