Position based paging approach for list page in Ax2012

Hi all,
I need to implement Paging[PositionBased] on the AOT query to customize the number of records fetched by the ListPage at load time.
Using the below methods of the QueryRun , added the page range to the query even then all the records are getting loaded on the list page.

  1. queryrun.enablePositionPaging(true);

  2. queryrun.addpageRange(startrecord, numberofrecordstoFetch);

So, is that possible to implement the concept of pagination on the list page [loading few records in the first page, like wise in the second page and so on] ?

Any suggestions are welcomed.