I want a text input to select the given options in my rails form.
f.collection_select(:user_id, User.all, :id, :name)
is the closest to what I want, but there are too many users to show as a dropdown.
I've tried rails-jquery-autocomplete, and I've written ajax to insert search results to the view before, but it all seems too much and verbose in 2019 just to convert a select box to a text input. If there is a best practice for filtering the given object collection in a rails form, I would like to know. Thank you.