Add a search bar for dropdowns. Technically you can search stuff up if you open the dropdown and start typing, but it’s quite iffy and your basically searching for stuff blindly.
My use case:
I have an inventory management form w/ a manufacturer and user dropdown. The issue is that both dropdowns have 50+ options and I’d like it to be more convenient and useable for the users
I think it would be beneficial to add this because:
It would make the user experience easier and prevent endless scroll
Agreed, this becomes painful past 30-40 options. One partial workaround until search lands natively: if your dropdown source is dynamic (via an expression or resourceLocator), switch to a text input with autocomplete-style filtering by having users type a few characters and matching in a Code node before hitting the Form node, essentially pre-filtering the list. It’s not as clean as a real search box, but it avoids blind scrolling for large lists. Native search support would still be the better long-term fix, especially for resourceLocator-style fields.