Hello everyone,
despite googling quite a bit I did not manage to sort this out.
So, I am using Base as a frontend to a MariaDB database.
The situation is as follows:
- I have a “module” table (containing one index and 4 text columns)
- I have a “category” table (containing one index, one reference to “module” (text) and 4 text columns)
- I have a “topic” table (containing one index, one reference to “module”, one to “category” (text) and 4 text columns)
- I have an “experience” table (containing one index, one reference to “module”, one to “category”, one to “topic” (text) and 4 text columns)
I need to create a form for “experience” display the following:
- a dropdown menu listing all the existing modules (from the “modules” table)
- a dropdown menu listing all the categories assigned to a given module (from the “categories” table")
- a dropdown menu listing all the topics assigned to a given category (from the “topics” table)
The content of these three fields should be then written in the respective columns of the “experience” table (along with the text columns, but that is easy).
How do I build such a filter/form?
Thanks a lot,
Giovanni