I have a ultracomboeditor and I enter a text into it and on the third letter I search in a User table for users that begin with this text.
I have autocomplete set to suggest but the suggestions are not shown until I enter the fourth letter.
Is there a way that I can force the ultracomboeditor to show the suggestions right away eftir I added the datatable to the datasource?
Hello,
Thank you for the sample, based on it you should change a first if clause to .TextLegth == 2, becasue the valueChanged property is fired after the value has been changed. To order to work for the third letter you should set the DataSource a step earlier.
Please let me know if this is what you are looking for.
Sincerely,
Danko Valkov
Developer Support Engineer
Infragistics, Inc.
If I change the first if clause to .TextLenght == 2, then I would send 2 letters to the function instead of 3 letters. I want to send 3 letters (matter of load balance) to the function and not 2. Is there no possible way of getting the combobox to show the suggestions right after I call .DataSource ?