I'm using primeng 7.1.3
.
What I'm trying to create is a scrollable tree table
(horizontal and vertical) with:
- the 1st
column not scrollable
- 2
groups of column
excluding the 1st one
I managed to get something like this: StackBlitz code.
Begin of Edit ---------------------------------------------------
I found a way around so I have updated the Stackblitz link to correct the problem. If you want to see the original problem, comment the ngAfterViewInit()
in the app-component.ts
file. Also updated tags of the question because of said solution.
End of Edit -------------------------------------------------------
From what I understand, it puts the 2 groups above the first column - instead of leaving an empty cell the size of 2 rows
- and the other columns as it should be.
Documentation for tree tables: PrimeNg Tree Table documentation
Any hint on how to solve this?
Thanks.