Kinetic Dashboard, Rows stop displaying after 80 rows

Hello,
I have built a Kinetic dashboard. It is simple and displays labor detail entries.


Notice that there should be 899 records loaded. But when I scroll down, I do not see all 899 records. The grid stops displaying after 80 rows. When I scroll down, I also can no longer see the top column headers.
On the Provider Model:

On the Grid model:

On the Advanced:

I have two problems to solve:
Problem 1) How do I see all the rows?
Problem 2) How do I keep the column headers when scrolling down?

How can trouble shoot this issue and do you have any suggestions?
Thank you,
Heide Warren

Turn off the Server Paging.

In developer tools, under Network and Payload, I see this
image

Thank you. Great answer and quick fix!!! Thank you again.

Well I didn’t answer the second part lol.

Your answer fixed that problem too. The top column header remains in place, now.

Awesome Season 3 GIF by Billions

1 Like

Turning off Server Paging obviously worked for you… but in some grids where there are a TON of records (thousands for example)… turning off Server Paging can really impact the time to load your form/grid.

Just tossing out an alternative… You can change the default Page Size under Grid Model.

I believe the default is 80… but you can up that to whatever default you want.

Then as the user scrolls down, it would load another 250, etc. Whatever you set the “Page Size” to.

Also… there is a setting in the grid overflow menu, under “Options”… here you can set the default number of records to load when you click the “Get More” icon. That defaults to 500 I think. So each time you click the “Get More” button, it downloads 500 more records. You can increase/decrease that value to whatever you want. I think this is more a user personalization though…

image
image

You both are amazing. Thank you. This gives me an alternative to the complete data dump from turning off Server Paging.
Thank you, Heide