Hi,
If we take a look at the sample AutoCompleteMode for UltraCombo and set AutoCompleteMode to SuggestAppend.
Select Apple in the list and now paste Cherry in the editor and when ultracombo is clicked to open the list, only cherry is seen in the list. (This happens only when text is pasted in editor or ultracombo's text is assigned programatically)
Is there any way we can see the whole list.
Thanks,
Rajesh
Hello Rajesh,Thank you for posting. I followed your instructions as a test for the functionality of the UltraCombo SuggestAppend and was unable to reproduce the issue you had described. Which version of NetAdvantage WinClient are you using and have you installed the latest service release?
Please let me know.Sincerely,Mike D.Developer Support EngineerInfragistics, Inc.
Thanks for the reply. I was working on Infragistics 8.2 version. I did some workaround for the issue.
I have the same problem with Infragistics 9.2 version.
How do you fix it?
Wing
Sounds a littile bit crazy but here is what I have done...
UltraCombo1.AutoCompleteMode = Infragistics.Win.AutoCompleteMode.None
UltraCombo1.Value = "xyz"
UltraCombo1.AutoCompleteMode = Infragistics.Win.AutoCompleteMode.SuggestAppend
-Rajesh
After I install the latest service releases NetAdvantage_WinForms_20092.2049_SR, the problem seems go away.
Thanks you for the quick reply.