Skip to content

@jimka/typescript-ui / data / ReadParams

Interface: ReadParams

Defined in: src/typescript/lib/data/proxy/Proxy.ts:17

Optional parameters passed to Proxy.read when the store opts in to server-side pagination.

Remarks

When AbstractStore.setPageSize(n) has been called, AbstractStore.load() builds a ReadParams object describing the desired page and forwards it to the proxy. Proxies that do not understand pagination (e.g. MemoryProxy) are free to ignore the argument.

Properties

page?

ts
optional page: number;

Defined in: src/typescript/lib/data/proxy/Proxy.ts:18


pageSize?

ts
optional pageSize: number;

Defined in: src/typescript/lib/data/proxy/Proxy.ts:19