Astrid Karsten
Astrid Karsten
@petarblazevski how do you manage to re-create the table anyway onChanges? I need to update the data within my table and for some reason it is just not working... ```...
Ok I have a slightly different issue here. when I update rows, I do get the new info in my table. However, when I'm trying to sort this, it gives...
I solved it by updating the data parsed to the table on ngChanges on the above component. Then in the table component onChanges I made a "createData function" and init...
Hmm.. that is weird actually.. I have it this way ``` ngOnChanges():void { this.createData(this.articles); this.onChangeTable(this.config); } private createData(articles:Array){ let articlesArray:any = articles; if (articlesArray) { if(articlesArray.length > 0) { this.rows...