Hi, everyone..
I have created relationships for a table using the cross-reference table method..
Table_A
store_id
Table_B
item_id
Table_C
store_id
item_id
-------------------------------------
Table_A relationships.ini
[Store_Items]
__sql__ = "SELECT * FROM Table_C c INNER JOIN Table_B b ON c.item_id = b.item_id WHERE c.store_id = '$store_id'"
-------------------------------------
The data inserted/updated for the relationship via Table_A is being executed successfully.. but..
when viewing single item via Table_A related data listing, xataface created a tab that shows the relationship data from Table_C with the tab title "Untitled Table_C Record"
how can i make this tab disappear or hide this tab (tab-0) since i think it's unnecessary for the end-user to know about the table joins..
thanks in advance! :)