While searching for products on a web site like amazon, i like the bot to provide options for user to choose filtering the data. For example, bot shows a drop down of “lowest” , “hightest”, “best seller” etc. User can select one option which can be used in data filtering.
What are the other ways of providing options to users other than a drop down?
Data services - create an entity and provide the right read write access to the users. Ask user to update the desired filter in the entity using message box. Once user confirm, follow this for more details on how to get it.
Asset- create a string type asset and ask user to update desired filter by comma seperate. Once updated, use get asset to read asset and split by comma.
User form - design a user form to get filter criteria from user. Follow this on how to get the values.