Changes between Version 25 and Version 26 of S3/S3REST/s3_rest_controller


Ignore:
Timestamp:
10/23/10 00:28:45 (14 years ago)
Author:
Dominic König
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • S3/S3REST/s3_rest_controller

    v25 v26  
    4949=== Pagination ===
    5050
     51The default pagination method is '''server-side''' (SSPag), meaning, in list views the client will receive only the first of the available rows, and then retrieve more rows as needed by subsequent Ajax calls.
     52
     53In contrast to that, in '''client side''' pagination (CSPag) mode all rows of a list are retrieved and send to the client at once, while the client arranges them in pages. This can though be a huge data set which takes a long time to extract it, which can be unefficient when the user only needs to see the first 20 rows to find what he's looking for.
     54
     55However, some tables naturally have only one or few rows, and server-side pagination is not needed then. In these cases, the respective controller can turn it off by:
     56
     57{{{
     58response.s3.no_sspag=True
     59}}}
    5160== View Control ==
    5261