We have a single select input control that currently has an unmanageable number of values. It is not something that can be easily filtered down with a cascading input control. We'd like to implement a typeahead input control so that the user can type a few characters of the name they're looking for and then we'll make a call via visuallize and get the results back from the server. Due to the number of values, we need this search to happen on the server side, not the client side (i.e. we don't want to retrieve all possible values from the server and then just do a typeahead via JS on the client).
Can this be done with Visualize?