I have a sortable pagable searchable table. I can see when the I click the paging arrow the query value updates by testing {{tableSort.data.pageOffset}}
BUT when I refresh the page and the current offset is not used and the arrow state not updated which means you have to click in my case the back arrow for the quey value to register the current paging position and then you can use it normally again.
This would be the url: /dashboard?pageOffset=2
But on refresh the dataview in fact show /dashboard?pageOffset=1 despite he url being /dashboard?pageOffset=2
You are right, my paging was previously set up with session variables and now changed to the correct query manager with parameter, But is still does not work when a page is refreshed. I still only get page 1 everytime I refresh.
The "server connect" serverconnectAdvisorUsers.... that is the Paged Query... so rather than having the dmx-bind:page="query.pageOffset" dmx-bind:pagesize="query.pageSize||10" on the dmx-data-view...
use it with your paged query... as that works with your pagination.. ???
so ja ... dmx-serverconnect paged query to control the pagination requests
and dmx-data-view to only repeat your data but not control the offset and limit....