hi every one
i create list page for STORE_VISITS table
i want to open view record page from multi table
STORE_VISIT_CONFISCATION_ITEMS table
STORE_VISIT_INSPECTION_ITEMS table
STORE_VISIT_PHOTOS table
STORE_VISIT_SAMPLES table
STORE_VISIT_VIOLATIONS table
STORE_VISITS_FINAL_ACTION table
the STORE_VISIT_ID is the connected between them
how i can do that
please help me
You can create a custom button and display the view page in a popup window
Please, check the above links.
I'm pretty sure that the first example in popup window will match your request.
In your case probably will be something like the next code, I'll suppose that this code will be in a custom button, client beforeor even in a client after.
var ctrl_STORE_VISIT_ID = Runner.getControl(pageid,'STORE_VISIT_ID');
Runner.displayPopup( {
url: "STORE_VISITS_view.php?editid1="+ctrl_STORE_VISIT_ID.getValue()
});
Match the above to your needs.
I'll hope this help you up, don't forget to mark this thread as SOLVED if your question is been answer.