Multi-Edit, setRecordsPerPage

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

Multi-Edit, setRecordsPerPage

Post by totza2010 »

when i use this code in list page. then use Multi-Edit not work, in Multi-Edit page not show table data show only header.

// Page Load event
function Page_Load()
{
    $this->setRecordsPerPage(-1);
}

But i use $this->setRecordsPerPage(20); or default Multi-Edit work.


arbei
User
Posts: 9787

Post by arbei »

You need to check the page action first, e.g. you may check $this->isShow() (i.e. not $this->isMultiEdit() nor other actions).


Post Reply