This topic is locked

Hide detail pop up link by condition

12/7/2012 2:36:05 AM
PHPRunner General questions
V
venfylin author

i got table master and detail,in master list page ,it can show detail in pop window,i want to hide the link by condiction,how to do?

C
cgphp 12/10/2012

In the "After record processed" event, enter the following code:

$record['yourtablename_dtable_link'] = false;


Replace yourtablename with the real name of the details table.