I'm working on an application built with JHipster in Angular 4.3. I'm searching for an angular tree component and I'm trying with PrimeNG.
I need something like this, with nodes and inside the last node, there are dropdownlists. The value displayed is the one saved in the database, but when the user clicks, he can see the other available values and choose another one if he wants to.
I've chosen Prime NG and done the example in the documentation. (And as you can see, I've a display bug, the arrows are displayed even if it's the last child... And I don't know how to correct it too)
But I haven't found how to proceed in order to customize the nodes, I've just this balise in the html :
<p-tree class="myTree" [value]="files"></p-tree>
"files"
are the json given in the tutorial (I haven't my services yet).
Has anyone ever done something like this ?