Page 1 of 1

Records Per Page to ALL on PageLoad

Posted: Thu Oct 06, 2022 7:09 pm
by konfuzion

Is there a way to set Records Per Page to ALL on PageLoad?


Re: Records Per Page to ALL on PageLoad

Posted: Sun Oct 09, 2022 1:00 pm
by arbei

You may try:

        $this->DisplayRecords = -1;
        $this->setRecordsPerPage($this->DisplayRecords); // Save to Session

Re: Records Per Page to ALL on PageLoad

Posted: Sun Oct 09, 2022 8:09 pm
by konfuzion

SOLVED