import { Component } from '@angular/core'; @Component({ selector: 'client-paging-demo', template: `

Client-side Paging Source

` }) export class ClientPagingComponent { rows = []; constructor() { this.fetch((data) => { this.rows = data; }); } fetch(cb) { const req = new XMLHttpRequest(); req.open('GET', `assets/data/company.json`); req.onload = () => { cb(JSON.parse(req.response)); }; req.send(); } }