-
Goal: I'm creating a form for KPI results. Two of those fields are drop-down values. Using the foreign key relationships, I want to return the values of the KPI field and the person name field from the person table. How do I bind the form fields to those values but insert the IDs in the DB? I am getting a field type error every time I submit the form.
-
Steps: I need some urgent help, please. I have three tables within the Retool default DB:
- KPI Master
- id
- kpi
- Person
- id
- first_name
- last_name
- KPI Results
- id
- kpi_master_id (foreign)
- person_id (foreign)