I have a form based on a table called proposals_people. Two of the fields of that table are id_projects and id_proposals.
The id_projects field is a combo box which is linked to a valuelist of my projects table. It works fine.
What I want is for the id_proposals field to only display the proposals of that project.
I have a table called proposals which has a many to one relationship with the projects table. The proposals_people table has a many to one relationship with the proposals table.
I have a relationship called proposals_people_to_proposals on id_projects .
If I create a related valuelist for the id_projects in the form based on the proposals_people table, and I set the valuelist as a “No N-M Relation”, using theproposals_people_to_proposals relation and pick the appropriate fields to show in the list and return to the dataprovider, I don’t get any values in the id_proposals control even when I select a project in the id_projects control that has many related proposals.
Can you tell me what I am doing wrong?