ServerSideConfig
Configuration for the server-side data plugin.
Controls how the grid fetches, caches, and paginates data from a remote source. The grid requests data in blocks (contiguous node ranges) as the user scrolls, caching them locally to avoid redundant network requests.
Example
Section titled “Example”new ServerSidePlugin({ pageSize: 100, cacheBlockSize: 200, maxConcurrentRequests: 2,})Properties
Section titled “Properties”| Property | Type | Description |
|---|---|---|
pageSize? | number | Number of nodes to request per fetch. This determines the endNode - startNode range passed to getRows(). Smaller values mean faster initial loads but more frequent requests while scrolling. |
cacheBlockSize? | number | Number of nodes kept in each cache block. When a block is evicted (e.g. scrolled far away), re-scrolling back triggers a new fetch. Should be ≥ pageSize; larger values reduce re-fetches at the cost of memory. |
maxConcurrentRequests? | number | Maximum number of concurrent getRows() requests. Limits how many blocks can be fetched simultaneously during fast scrolling. Set to 1 for strict sequential loading; higher values improve perceived performance. |
loadThreshold? | number | Prefetch slack in node count (rows). When > 0, blocks are loaded as soon as the user is within loadThreshold rows of an unloaded block, rather than only when the visible window enters it. This reduces the number of placeholder rows the user sees during gentle scrolling at the cost of slightly more eager fetching. |
dataSource? | ServerSideDataSource<unknown> | Data source for server-side loading. When provided, the plugin auto-initializes on attach — no need to call setDataSource(). |
sortMode? | server | local | How sort changes affect the cache. - 'server' (default): purge cache and refetch via getRows({ sortModel }). Use when the backend supports the requested sort shape natively. - 'local': keep the loaded blocks; sort the loaded rows in-place via the active sort plugin (MultiSort or core sort). sortModel is not sent on subsequent block fetches. Placeholder rows (__loading: true) are pinned to the end regardless of direction. |
filterMode? | server | local | How filter changes affect the cache. - 'server' (default): purge cache and refetch via getRows({ filterModel }). - 'local': keep the loaded blocks; filter only the rows currently in cache via FilteringPlugin’s normal pipeline. filterModel is not sent on subsequent block fetches. |
Property Details
Section titled “Property Details”pageSize
Section titled “pageSize”Default: 100
cacheBlockSize
Section titled “cacheBlockSize”Default: 200
maxConcurrentRequests
Section titled “maxConcurrentRequests”Default: 2
loadThreshold
Section titled “loadThreshold”Prefetch slack in node count (rows). When > 0, blocks are loaded as
soon as the user is within loadThreshold rows of an unloaded block,
rather than only when the visible window enters it. This reduces the
number of placeholder rows the user sees during gentle scrolling at the
cost of slightly more eager fetching.
The threshold is applied symmetrically: the viewport is expanded by
loadThreshold rows in both directions before block coverage is
computed. The maxConcurrentRequests cap and per-block dedup still
apply, so a large threshold during fast scrolling will not flood the
server with requests.
A reasonable starting point is pageSize / 2. Values larger than
cacheBlockSize will eagerly request 2+ blocks ahead, which can hurt
perceived performance with slow backends.
Default: 0 (fetch only when the visible window enters an unloaded block)
dataSource
Section titled “dataSource”features: { serverSide: { pageSize: 50, dataSource: { async getRows(params) { const res = await fetch(`/api/data?start=${params.startNode}&end=${params.endNode}`); return res.json(); }, }, },}sortMode
Section titled “sortMode”How sort changes affect the cache.
'server'(default): purge cache and refetch viagetRows({ sortModel }). Use when the backend supports the requested sort shape natively.'local': keep the loaded blocks; sort the loaded rows in-place via the active sort plugin (MultiSort or core sort).sortModelis not sent on subsequent block fetches. Placeholder rows (__loading: true) are pinned to the end regardless of direction.
Use 'local' when the server cannot sort by every column the user can sort
(e.g. APIs that only support a single sort field, or no sort at all).
Default: 'server'
filterMode
Section titled “filterMode”How filter changes affect the cache.
'server'(default): purge cache and refetch viagetRows({ filterModel }).'local': keep the loaded blocks; filter only the rows currently in cache via FilteringPlugin’s normal pipeline.filterModelis not sent on subsequent block fetches.
In 'local' mode the user only filters the currently loaded subset —
scrolling further loads more blocks which then re-enter the local filter.
Default: 'server'