ng2-table icon indicating copy to clipboard operation
ng2-table copied to clipboard

Columns count change did not respond

Open TeodorKolev opened this issue 6 years ago • 0 comments

If column is dynamically added, it is not shown in table. What I have tried:

 let item = {
        title: 'some item',
        name: 'someItem', filtering: {filtering: '', placeholder: '', sort: ''}
      };
      this.columns.splice(5, 0, item);
      this.tablePageService.columns = this.columns;
      this.tablePageService.config = this.config;
}

This did not makes table to refresh with shown new added column

TeodorKolev avatar Dec 18 '17 10:12 TeodorKolev