https://github.com/sjohnsonaz/cascade-datasource
Array and Service Pagination powered by Cascade.
https://github.com/sjohnsonaz/cascade-datasource
array cascade datasource model mvvm observablearray pagination reactive service
Last synced: 6 months ago
JSON representation
Array and Service Pagination powered by Cascade.
- Host: GitHub
- URL: https://github.com/sjohnsonaz/cascade-datasource
- Owner: sjohnsonaz
- License: mit
- Created: 2017-01-08T22:35:49.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2023-01-11T04:21:26.000Z (about 3 years ago)
- Last Synced: 2025-07-01T15:53:58.622Z (7 months ago)
- Topics: array, cascade, datasource, model, mvvm, observablearray, pagination, reactive, service
- Language: TypeScript
- Homepage:
- Size: 821 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 15
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Cascade Datasource
[](https://travis-ci.org/sjohnsonaz/cascade-datasource) [](https://badge.fury.io/js/cascade-datasource)
Array and Service Pagination powered by Cascade.
```` TypeScript
var dataSource = new DataSource((page, pageSize, sortedColumn, sortedDirection) => {
return DataSource.pageArray(dataArray, page, pageSize, sortedColumn, sortedDirection);
});
dataSource.init();
dataSource.page = 1;
````