U
|
Urnso author 1/29/2009 |
Ok I did some testing with the add_link by using |
U
|
Urnso author 1/29/2009 |
Ok I figured out how to remove the "edit" tag. But it does it on everyline listed. |
J
|
Jane 1/30/2009 |
Hi, global $record; $noedit = "0"; if ($noedit == "0") $record["edit_link"]=false; else $record["edit_link"]=true; |
U
|
Urnso author 1/30/2009 |
Hi, I suppose you need to he List page: After record processed event for this purpose. Here is a sample code:
|
J
|
Jane 2/2/2009 |
Hi, $xt->assign("no_edit",true); won't work in the List page: After record processed event. global $record; $record["edit_link"]=false; |
U
|
Urnso author 2/2/2009 |
Hi, won't work in the List page: After record processed event. You need to declare $record array and use it:
|