Is it possible to do this under xataface? For example i have a table which references data in another table by an auto-incremented row id. As an example, let's say I have two tables, the first is cars that have the following:
model
manufacturer_id
color
the second is manufacturers with the following structure:
manufacturer_id
name
in the edit/add new record screen of the cars table I have a dropdown list of the manufacturers. As I'm adding this record of car, I realize that the manufacturer is not listed in the dropdown. Is there a way to have an option to add a manufacturer to that list by just typing it in on the same screen? I don't want to have to switch to a different table view to add a new one then go back and start over on the car screen.
Thanks!