The script here will allow for you to add editable paging tables to your wiki page. A drop down is provided in the run macro to allow you to page forward and backward. You can also set the size of resultset to return. This script also demonstrates how to store parameters with your current session:
Code Block |
---|
value=session.getAttribute(SESSION_OFFSET_ATTRIBUTE)
session.setAttribute(SESSION_OFFSET_ATTRIBUTE, value)
|
This will enable you to revisit a page and pick up where you left off. You must provide the custom parameters and SQL inline.
...