After selecting a item from the dropdown list. Say there is 100 items. The list will then be limited to jus the selected one. I prefer 100 items to still show but of coarse the one I clicked on is selected.
Below is example of what happens after I click on “test’“
Is this the single select widget? How is your setup? It usually does not limit to a single option after selecting one.
This looks as if you have a trigger, that changes the options of your Selection Option Data Source
Glad you got it sorted. For anyone reading later, this behavior comes from how Tulip handles Table Queries and Aggregations. Aggregations always return a summarized list based on the query they sit on top of. The docs note that queries and aggregations “filter and summarize your data for use in Apps”: https://support.tulip.co/docs/table-queries-and-aggregations
So if the query feeding the aggregation has a filter, the Single Select will only show the values returned by that filtered result. Removing the filter (or adjusting it) restores the full set of options.
This is expected behavior and consistent with how Tulip queries and aggregations work.