Data source
@xngui/cdk/datasource@xngui/cdk/datasourcePure XDataSource pipeline — loader returns result or Promise.
Preview
Array `data` — filter, sort, pagination
Page 1 of 5 · size 5 · showing 5 · sort —
- Ava Chen
- Liam Patel
- Noah Novak
- Mia Okafor
- Ethan Smith
import { createDataSource } from '@xngui/cdk/datasource';
const directory = createDataSource({
data: people,
pageSize: 5,
searchFields: ['name', 'role', 'department'],
filter: null,
sort: [],
autoLoad: true,
});
directory.setSearch('…');
directory.setSort('name', 'asc');
Events
Interact with the preview — events will appear here.