What is the user interface that allow user to select multiple records from DB

jeeradate

Member
Licensed User
Longtime User
I want to create the user interface that allow user to browse the database and select multiple records from DB but I don't know which view type I should use. And it would be great if there are examples. :sign0104:

Thank you in advance for your advice.
 

klaus

Expert
Licensed User
Longtime User
It depends on what kind of selection you want to do.
- If you want to select several records the best way is to allow multiselection in the table. Example: ScrollView example with multiselection and SQL
- If you want to filter on different values you should write a separate interface. Example: SQLExample in the User's Guide.

Best regards.
 
Upvote 0

jeeradate

Member
Licensed User
Longtime User
Thank you very much.

It depends on what kind of selection you want to do.
- If you want to select several records the best way is to allow multiselection in the table. Example: ScrollView example with multiselection and SQL
- If you want to filter on different values you should write a separate interface. Example: SQLExample in the User's Guide.

Best regards.

I need the first choice. I will study the example.
Thank you for your kind advice.

Best regards,
Jeeradate K. :wav:
 
Upvote 0
Top