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
|`infoPanel[*].prefetchObjects`| Number | yes |`0`|`2`| Number of next rows to prefetch when browsing sequential rows. For example, `2` means the next 2 rows will be fetched in advance. |
1327
-
|`infoPanel[*].prefetchStale`| Number | yes |`0`|`10`| Duration in seconds after which prefetched data is discarded as stale. |
1330
+
| Parameter | Type | Optional | Default | Example | Description |
|`infoPanel[*].prefetchObjects`| Number | yes |`0`|`2`| Number of next rows to prefetch when browsing sequential rows. For example, `2` means the next 2 rows will be fetched in advance. |
1333
+
|`infoPanel[*].prefetchStale`| Number | yes |`0`|`10`| Duration in seconds after which prefetched data is discarded as stale. |
1334
+
|`infoPanel[*].prefetchImage`| Boolean | yes |`true`|`false`| Whether to prefetch image content when prefetching objects. Only applies when `prefetchObjects` is enabled. |
1335
+
|`infoPanel[*].prefetchVideo`| Boolean | yes |`true`|`false`| Whether to prefetch video content when prefetching objects. Only applies when `prefetchObjects` is enabled. |
1336
+
|`infoPanel[*].prefetchAudio`| Boolean | yes |`true`|`false`| Whether to prefetch audio content when prefetching objects. Only applies when `prefetchObjects` is enabled. |
1328
1337
1329
1338
Prefetching is particularly useful when navigating through lists of objects. To optimize performance and avoid unnecessary data loading, prefetching is triggered only after the user has moved through 3 consecutive rows using the keyboard down-arrow key or by mouse click.
1330
1339
1340
+
When `prefetchObjects` is enabled, media content (images, videos, and audio) in the info panel can also be prefetched to improve loading performance. By default, all media types are prefetched, but you can selectively disable prefetching for specific media types using the `prefetchImage`, `prefetchVideo`, and `prefetchAudio` options.
0 commit comments