Rafael Santos

Results 3 comments of Rafael Santos

I had same problem.. I solved calling .focus() on my input, like @Raidri suggested.. My code: ``` myInput.addEventListener('search', (event) => { myChoice.setChoices(async () => { return this.doSearch(event.detail.value); }) .then(() =>...

@WhyNotHugo i get no freezing behavion on keystroke with this code.. are you fetching data from remote source?

Ok.. are you using any debounce approach? If not, you can do it with setTimeout, like: ``` let myTimeOut = null; myInput.addEventListener('search', (event) => { clearTimeout(myTimeOut); myTimeOut = setTimeout(() =>...