Sneak Peek: Pagination Support in Power Apps SDK #49
Closed
marcelbf
announced in
Announcements
Replies: 2 comments 1 reply
-
|
Hi, can this feature be implemented? I'm trying to create a paginated list, and it would be very helpful. Thank you very much! |
Beta Was this translation helpful? Give feedback.
1 reply
-
|
Hi, can this feature be implemented with sharepoint list? |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Overview
We're excited to share a preview of pagination support coming soon to the Power Apps SDK! This feature enables efficient data retrieval for large datasets, providing developers with flexible query options and improved performance.
Current Implementation: Offset-Based Pagination
The initial release will include offset-based pagination through the enhanced
IGetAllOptionsinterface. This approach gives you fine-grained control over data retrieval using familiar SQL-like concepts.IGetAllOptionsInterfaceSupported Values & Examples
topnumbertop: 20(get 20 records)skipnumberskip: 40(skip first 40)filterstring"contains(Name,'John')"orderBystring[]["Name asc", "Date desc"]selectstring[]["ID", "Name", "Email"]maxPageSizenumbermaxPageSize: 100countbooleancount: trueUsage Example
Practical Pagination Implementation
Looking Ahead: Cursor-Based Pagination 🔮
While offset-based pagination provides immediate value, we're also planning cursor-based (token) pagination for future releases.
Feedback Welcome!
We'd love to hear your thoughts:
What do you think? Are there specific pagination use cases you'd like us to prioritize? Let us know in the comments below! 👇
This feature is planned to be available by July 18th. API surface may change based on feedback.
Beta Was this translation helpful? Give feedback.
All reactions