Displaying a list with tables and links to them on the main screen ?
For example:
You need to display links to the Sonya and James tables on the main screen, and then not use the Students table
Or…
Display the Students table on the main screen, but links to the Sonya and James tables were added to the rows of this table
Please HELP ME
Your question is unclear, but why do you have separate tables for each student. It will be much easier to build and maintain your app if all student data is in the same table with another column that contains the student name or ID to indicate which row belongs to which student.
1 Like
I decided that if each student had his own table, it would be more convenient.
Main question. How to display a list of these tables?)
Ok. It’s more setup for you app. You’ll have to edit the app every time you add a student, and you will have to duplicate screens for each student. If you have 10 students, that means you will have to make the same modifications 10 times.
If that’s more convenient for you than just putting all of the student data in one table and only having to design your screens once, then that’s fine. In that case I would create a custom action for the collection on the screen that contains your list of students. You will have to configure an IF branch for each student in the action based on the student name. Each branch will have a ‘Show New Screen’ action. You will then have to navigate to each new screen and add a collection that points to the respective student’s table. Then you will also have to navigate to the one of the records in each student table and design the screen there. You will have to do that for each student, so you will be setting up the same screens multiple times.
1 Like
If you are looking for a basic alternative, you could just add two collections to the same screen that each point to each table. You will still be required to design detail screens for each student when clicking on an item for each collection.
1 Like
Yes, most likely you are right, I ran into a problem with how to display my data in one table. But I think this will be easier to solve than the problems you are talking about. We need to think carefully…
Unfortunately, this is quite a classic issue. What you can do is also make a JSON object and then debunk this object on demand.
With Javascript column type. It’s fairly easy to do and code.