ワンクリックで
uno-mvux-pagination
Implement paginated and infinite scrolling lists in MVUX.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Implement paginated and infinite scrolling lists in MVUX.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Create and use commands in MVUX for user interactions.
Create and use IFeed<T> for async data in MVUX.
Display async feed data with FeedView control.
Create and use IListFeed<T> for reactive collections in MVUX.
Create and use IListState<T> for mutable reactive collections in MVUX.
Use messaging to sync MVUX states with entity changes.
| name | uno-mvux-pagination |
| description | Implement paginated and infinite scrolling lists in MVUX. |
| when_to_use | Use when loading large datasets incrementally (page by page), implementing infinite scroll in `ListView`, `GridView`, or `ItemsRepeater`, working with APIs that use offset/limit or cursor-based pagination, or using `ListFeed.PaginatedAsync(...)`. |
| metadata | {"author":"uno-platform","version":"2.3","category":"mvux"} |
Docs lookup: call
uno_platform_docs_search(...)first, thenuno_platform_docs_fetch(sourcePath="…")using thesourcePathfield from a result (a relative.mdpath; add the result'sanchorfor a section). Never pass a URL, a.htmllink, or a hand-built path.
Search for and fetch the pagination documentation:
uno_platform_docs_search("MVUX pagination infinite scrolling PaginatedAsync")
Primary documentation pages:
external/uno.extensions/doc/Learn/Mvux/Advanced/Pagination.mdexternal/uno.chefs/doc/mvux/Pagination.mdexternal/uno.extensions/doc/Reference/Reactive/in-apps.mdFetch the reference page:
uno_platform_docs_fetch(sourcePath="external/uno.extensions/doc/Learn/Mvux/Advanced/Pagination.md")
Fetch the Chefs app example for a real-world implementation:
uno_platform_docs_fetch(sourcePath="external/uno.chefs/doc/mvux/Pagination.md")
From the fetched docs:
PageRequest.DesiredSize, PageRequest.CurrentCount)If the user is using ItemsRepeater for incremental loading:
uno_platform_docs_search("ItemsRepeater MVUX pagination incremental loading")
Key page:
external/uno.toolkit.ui/doc/helpers/walkthroughs/itemsrepeater-extensions.howto.mdListFeed.PaginatedAsync(...) to create a paginated list feedPageRequest with DesiredSize and CurrentCountListView supports incremental loading automatically when bound to a paginated feedItemsRepeater, use the Toolkit's ItemsRepeaterExtensions for incremental loading support