Skip to content

@jimka/typescript-ui / data / StoreOptions

Interface: StoreOptions

Defined in: src/typescript/lib/data/Store.ts:14

Construction-time options for Store. May be passed as the first argument in place of the positional (model, proxy) form, in which case model and optional proxy come from the bag.

Extends

Properties

autoLoad?

ts
optional autoLoad: boolean;

Defined in: src/typescript/lib/data/AbstractStore.ts:54

Inherited from

AbstractStoreOptions.autoLoad


filters?

ts
optional filters: FilterDescriptor[];

Defined in: src/typescript/lib/data/AbstractStore.ts:53

Inherited from

AbstractStoreOptions.filters


listeners?

ts
optional listeners: Partial<Record<StoreEvent, StoreListener<any>>>;

Defined in: src/typescript/lib/data/AbstractStore.ts:55

Inherited from

AbstractStoreOptions.listeners


model

ts
model: Model;

Defined in: src/typescript/lib/data/Store.ts:15


page?

ts
optional page: number;

Defined in: src/typescript/lib/data/AbstractStore.ts:51

Inherited from

AbstractStoreOptions.page


pageSize?

ts
optional pageSize: number;

Defined in: src/typescript/lib/data/AbstractStore.ts:50

Inherited from

AbstractStoreOptions.pageSize


proxy?

ts
optional proxy: Proxy;

Defined in: src/typescript/lib/data/Store.ts:16


sorters?

ts
optional sorters: SortDescriptor[];

Defined in: src/typescript/lib/data/AbstractStore.ts:52

Inherited from

AbstractStoreOptions.sorters