This topic is locked
[SOLVED]

 hide the add / edit / delete buttons

8/31/2012 4:03:19 AM
PHPRunner General questions
D
droogers author

Hello,
I made an event to hide the inline edit button in the list page which works great:

if ($data["geboekt"]=="3")

{

$record["inlinedit_link"]=false;

}



The problem is that I can see the edit button above the table . How can I also hide this button ?

D
droogers author 8/31/2012

Hello,
The solution is to hide the checkbox also. Then it´s impossible to select the record and to edit or delete it with te buttons:



if ($data["geboekt"]=="3")

{

$record["inlinedit_link"]=false;

$record["checkbox"]=false;

}