• Using the code below how do I create a pagination and set the pageSize to 10?

    $query = new AirpressQuery();
    $query->setConfig(“GPTest”);
    $query = new AirpressQuery(“Awards”, “default”);
    $gprecords = new AirpressCollection($query);

    $query->maxRecords(“15”); // WORKS
    $query->pageSize(“5”); // DOES NOT WORK

  • The topic ‘Pageination’ is closed to new replies.