Since 2005 I work with PHPRUNNER but now I am stuck with something haha.
My project is for an Insurance company.
There is a table _polis with a custom view 'Polis'.
This is the base table for all the different insurance policies.
So there is a relation (Master - Detail) between _polis and the different policies.
In the Visual Editor is a custom line (View as) for each of the different policies like:
if($data["PolisType"]==1)
{
$value="<a href=\"_polis_auto_list.php?mastertable=%5Fpolis&masterkey1=".$data["PolisID"]."\">".$value."</a>";
}
This works great but the client has to click on the link to view the content.
He now likes the have a popup with the content so he can view the content without to open en close the page.
How do I do that?
John