Grid Edit

This public forum is for user-to-user discussions of PHPMaker. Note that this is not support forum.
Post Reply
smpsrllc
User
Posts: 72

Grid Edit

Post by smpsrllc »

Hello

In the demo, i can login with administrator account, in the menu for ordendetails, i can access gridedit in this link

/phpdemo2019/orderdetailslist.php?action=gridedit

If I log in with the nancy account, in permissions I do not have access to gridedit, but if I have the link I can access this option.

How i can fixed this.

Thank you.


mobhar
User
Posts: 11725

Post by mobhar »

You can prevent it by simply put this following code in "Page_Render" server event of the List page that belongs to the "orderdetails" table:

if (!Security()->canEdit() && $this->isGridEdit()) {
$this->terminate("orderdetailslist.php");
}


smpsrllc
User
Posts: 72

Post by smpsrllc »

if (!Security()->canEdit() && $this->isGridEdit()) {
$this->Page_Terminate("orderdetailslist.php");
}

Thank you.


Post Reply