Limit Paged Query

I have been successful in building a paged query to my table. The issue is that is shows about 20 rows per page. I wanted to limit this to 10 per page. Can some explain how to achieve this?

and

On the server action, remove the {{$_GET.limit}} text and replace with 10.

1 Like

Thank you.hehehehe

Removing the {{$_GET.limit}} may cause you to have issues with the recordset paging. The better way to do it is to:

1: Select your connection in the App Connect Panel
2: In the properties panel add 10 to the Limit spot.

1 Like

I actually came into that very issue. Thank you.

1 Like