I have a table component with data source attached to kettle transformation.
Now, I want to implement server side pagination and access the parameters "pageStart" and "pageSize" set by pentaho in kettle transformation using getVariables. I have followed https://forums.pentaho.com/threads/143504-how-to-use-CDE-table-component-of-Paginate-server-side/ to set up server side paginate.
I do see the pageSize and pageStart parameters set in the post parameters in the doQuery in the network console but cannot access them in kettle transformation. Turns out I can only access parameters prefixed by "parameter" in the kettle transformation but not the ones without prefix "parameter", see the screenshot
I can access the paramDateStart and paramDateEnd but not pageSize and pageStart in the transforamtion.
How can I achieve this so that I can only load certain data set based on parameters pageStart and pageSize from the server?