Conditional disable pagination

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

Conditional disable pagination

Post by scs »

How to disable pagination by user level for specific table.

Thanks


mobhar
User
Posts: 11660

Post by mobhar »

You may try Page_Render server event under the List Page, for example:

if (yourcondition) {
    $this->Pager->Visible = false;
}

Post Reply