Hi
I have a database with more than 5K items (stocks).
I created a drop down menu that should display all the stocks in the database so the user should be able to choose one of them.
It seems like there is item limitation in the drop down menu list because i’m not seeing all the items from the database.
Is there any place where i can change that limitation?.
I just checked and the limitation is 1000 items. I need to bypass that limitation :(.
It’s probably the collection query limitation, not the drop-down limitation.
So you can query 5 times (with skip() ).
However from UX perspective having so many options in a dropdown is quite an awful experience as GOS said. So you should reconsider.
I’m trying to understand what do you mean, can you please show me some example?.
My goal is to let the user choose stock from the list and after that submit the form and update the database.
Thank you.
As for filtering your table or repeater, you simply have a table or repeater with your items in it from a dataset with dropdowns or some other user input that the user can use to filter that list down from 5k items to either the exact product or a group of items like a certain product range for example.
Or just break your items into product ranges for example so you are not showing such a long list and let the first drop down be a choice of product range and then the other dropdowns being for that certain product range.
ok, thanks.
Is there any option to type the the first character of the stock symbol and and search bar will show the list of that stocks?. small search bar inside the form so the user can write the name of the stock and i will fetch the list automatically from the database.
the user should choose items from the drop downs menus and submit that form.
“AMGN” is the dropdown list that has more than 5k items.
How a repeater or table can help me to filter that dropdown menu?.
let the user search for the item by typing keywords.
display a table with the option and filter on row selection.
same as #2 but with a repeater.
Any way, in my opinion, it makes no sense to think that anyone will go over a list of 5k items. So options 2 & 3, only makes sense if you display short a category of items in the table/repeater, and once the user selects a category you display a table of subcategories and inside a subcategory you show a short list of items (browse).
Hi
I configured the sub category option.
The user can choose category and after that he can see dropdown menu with all the stocks from that category.
Thanks a lot for the help!