Skip to content
This repository was archived by the owner on Jul 24, 2025. It is now read-only.

Latest commit

 

History

History
13 lines (10 loc) · 574 Bytes

File metadata and controls

13 lines (10 loc) · 574 Bytes

Cascade Datasource

Build Status npm version

Array and Service Pagination powered by Cascade.

var dataSource = new DataSource<number>((page, pageSize, sortedColumn, sortedDirection) => {
    return DataSource.pageArray(dataArray, page, pageSize, sortedColumn, sortedDirection);
});
dataSource.init();
dataSource.page = 1;