This topic is locked
[SOLVED]

 master detail link

8/12/2008 5:07:47 PM
PHPRunner General questions
G
garethp authorDevClub member

Hi
I was wondering if you can help (again!!!)...
I have a master sor_header with fields sor, date

and details sor_details with field record, sor, part, quantity linked on sor
At the moment I have on the sor_header list page a "sor_details" link that will take me to the related details and when you hover over show the details in a popup - as normal.
However, is there any way of instead of having the "sor_details" link the same functionality could work if I hover over the "sor" field or click this field. This would save me space on the table and work well for a number of table I have.
many thanks
Gareth

J
Jane 8/13/2008

Gareth,
edit your page in HTML mode on the Visual Editor tab.

Here is a sample:

<A class=tablelinks2 href="DetailTableName_list.php?{$row.1DetailTableName_masterkeys}" {if $useAJAX} onmouseover="RollDetailsLink.showPopup(this,'DetailTableName_detailspreview.php'+this.href.substr(this.href.indexOf('?')));" onmouseout="RollDetailsLink.hidePopup();" {/if}>{$row.1sor_value}</A>

G
garethp authorDevClub member 8/13/2008

You are a superstar - fantastic