it's working great so far except for one hiccup with many-to-many relationship.
i've got two tables and a relationship table for store the relationships
[videos]
auto_pkid int auto_increment PRIMARY
name varchar(255)
[models]
auto_pkid int auto_increment PRIMARY
name varchar(255)
[pcl]
auto_pkid int auto_increment PRIMARY
parent int
child int
inside the tables directory of videos i have a relationships.ini file that looks like
- Code: Select all
[Models]
models.auto_pkid = pcl.child
pcl.parent = "$auto_pkid"
when looking at the models relationship i can se ethe options to
- add new models record
- add existing models record.
add new models record works fine.
add existing models record does not. i get a screen presenting me with a Select dropdown and a text field for the Name field. I assume select is supposed to populate with the ids of existing records from the models table but it is empty.
i feel like i'm missing something really simple here. please help.
thanks