Clients table and Houses table joined (houses hold many clients).
main Menu Item: Clients link works appropriately to get to clients
http://localhost:8085/clients_list.php?f=%28Active~equals~Yes%29&tab=MyRegion&orderby=aLast_Name
In the list view for houses, Users can click on a detail 'popup' (clients link) to enter house/client detail records for house. (view the clients in that house).
Landing the user in mastertable/client-details url (so far so good)
http://localhost:8085/clients_list.php?mastertable=houses&masterkey1=305&tab=MyRegion&orderby=aLast_Name
However, after entering house/client-details screen the Menu item: Clients link target appears to change:
http://localhost:8085/clients_list.php?menuItemId=2&f=%28Active~equals~Yes%29&tab=MyRegion&orderby=aLast_Name
The url is not the same as was defined in the menu link target - menuItemId=2& was added to the link target ??
upon clicking Menu item: Clients link - the interface gets trapped in the house that was viewed.
- Clicking the Menu item: Clients link lands the user at:
http://localhost:8085/clients_list.php?f=%28Active~equals~Yes%29&mastertable=houses&masterkey1=305&tab=MyRegion&orderby=aLast_Name
url was modified to add mastertable=houses&masterkey1=305 (or whatever house id that was viewed) ???
The user cannot get back to the clients list-page without the 'mastertable' filter applied. (breaking my app).
The only way out if this mastertable trap is to Log out and Log back in.
as long as the user DOES NOT click into master/detail screens, the Client link on the menu takes the user the to the correct url.
I tried to change the masterdetail view to inline, but moving into any other master/detail screen, say the clients "notes" details links, also locks the UI to mastertable=houses&masterkey1=###.
I am so totally lost.
{wonk}