So how does it work?
This is brief, because it's after midnight.
- Use a Named Column (row template) for the Report to build the grid array data - see page source code for output.
- The query needs to return the data in a JSON escaped format, so use a "SQL Query (PL/SQL function returning a SQL query)" with generic column names The function call looks like:
- The query returned limits the rows and JSON escapes the data, much the same way as Apex does internally (hint: dbms_sql). Also - I set pagination to none, as its handled by my code.
- Pressing next data set on the displayed page fires off a AJAX request (application process) which passes the region_id as well as start, limit and callback function values.
- This executes a database package to re-run the query and return a paginated rowset. You can see the returned data format using Firebug.
- The grid updates the data using builtin ExtJS functionality.
Next example will be an updatable grid - also near completion.
Nighty night - Mark