the problem is whatever I do, the clicking the pagination triggers a whole
page refresh, the links are not trapped,
This describes the problem
Trapped Ajax links
A
Ajax links
Normally a link is not trapped, and by clicking in a link inside a
component, the entire linked page is loaded. Sometimes you want the linked
page to be loaded inside the component. This can be achieved using the A
helper:
1.
{{=A('linked page',_href='http://example.com',cid=request.cid)}}
If cid is specified, the linked page is loaded via Ajax. The cid is the id of
the html element where to place the loaded page content. In this case we
set it to request.cid, i.e. the id of the component that generates the
link. The linked page can be and usually is an internal URL generated using
the URL command.
--