You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: website/docs/reference/widgets/table/README.md
+30Lines changed: 30 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -151,6 +151,36 @@ For instance, you can create a Count query to retrieve the total number of recor
151
151
152
152
</dd>
153
153
154
+
#### Infinite scroll `boolean`
155
+
156
+
<dd>
157
+
158
+
When enabled, this property allows the Table widget to dynamically load more records as users scroll, creating an intuitive browsing experience for large datasets.
159
+
160
+
This property becomes available only when **Server-side pagination** is enabled. Make sure both the **onPageChange** and **onPageSizeChange** events are configured to fetch the correct data based on the current scroll position.
161
+
162
+
*How It Works*:
163
+
164
+
- Infinite scroll dynamically updates the Table’s pagination properties and triggers data loads as users interact with the widget:
165
+
166
+
- The `Table.pageNo` property is automatically incremented when the user scrolls to the bottom of the visible records.
167
+
168
+
- The **onPageChange** event is triggered to run the linked query or API with the new pageNo.
169
+
170
+
- The number of records fetched per scroll is determined by `Table.pageSize`.
171
+
172
+
- A loading indicator appears at the bottom while new records are being fetched.
173
+
174
+
175
+
The following Table features are automatically disabled when infinite scroll is enabled to ensure consistent server-driven data behavior:
0 commit comments