Hi jorgo,
It's clear that it is nonsense to fill it with millions of entries.
Agree

My solution is to increase JQAutoCompleteOptions.MinLength to 2.
The disadvantage is that I can no longer use the joker "_" to show all possible entries.
Here you have my suggestion of workarround:
Set the MinLength to default value (1).
Put in OnSearch.Script property, this script:
- Code: Select all
function (event, ui){
var $input = $(event.target), len = $input.val().length;
if ((len == 1) && (event.key == '_')){
return true;
} else {
return len > 1;
}
}
This code will have same behavior as MinLength = 2, except one thing, will allow to search/call with single '_' char...
Best Regards.