More specifically, I have a DB which has tables 'people' and 'email_addresses'. I can create new email_addresses fine when I navigate to the "email_addresses" "folder" in the navigation bar and click "new record". This saves successfully!
However, I have setup relationships.ini in people as:
- Code: Select all
[Email Addresses]
email_addresses.person_id = "$id"
And when I navigate to the "folder" for "people" and select a person, I see an "email addresses" tab. (Good, so far) But, when I select the "email addresses" tab and click on "add new email addresses record" when I click "save" I don't get a message the save was successful and it seems to fail silently.
I thought that something might be wrong with the relationship so I added the following to relationships.ini in email_addresses:
- Code: Select all
[People]
people.id = "$person_id"
but that didn't seem to help.
Any help would be appreciated.
-Rob