Marin Takanov
Marin Takanov
I did it like this: ``` private columnsForTable: Array = [ { prop1: 1, prop2: 2, prop3: 'Link'}, ... ]; ```
@Sam2243 Why you need to iterate over the rows in the html? What you aim for? @arinhere Yes, you can use `routerLink=['/foo/123']`. I've used the following: ``` // JS public...
Well, there no is straight way of hiding/showing rows, but I can show you my workaround: ``` public config: any = {} private data: Array = []; private initData: Array...
Ok, I figure it out. You have bug in your example on this line `if (columns[i].sort !== '' && columns[i].sort !== false) {` This condition is incomplete, because the way...