angular-5-data-table
angular-5-data-table copied to clipboard
Nor Sorting neither Paging with async datas
Hi, nice job, but, when loading datas from an API, nor sorting, neither paging...
this.route.data .subscribe((data: any[]) => { //console.log('Données : ' + JSON.stringify(data)); this.quotations = data.QuotationsListResolveService; this.length = this.quotations.length; this.loader = false; });
Datas displayed, but... no sorting, no paging (all datas are displayed but 10 as expected)
Any idea ?
Regards