Is there a way to use the input select but with the searches perform in the xano backend?

I’m using the input select component to search for users.

It works fine with 100 records with the dropdown. However, with 4000 user records, my weweb page is crashing.

Is it possible to use the input select component but that the options only display after I search for it?

I’m trying to use a lot of the prebuilt component in weweb istead of building my own input select.

Pls help!

Typically you need something like Virtual Scrolling to not overload your browser.

You could maybe add a workflow to your text input that On Change writes the value to a variable, then filter your Select Options to match that variable’s value. But you still might run into issues if the match returns too many results.

Thank you @Micah Unfortunately you are right. I’m still going to run into issues. :frowning: