I've got a treegrid with tooltips using the standard setup.
It shows the mousecontent for the parents via:
onBeforeRender(args) {
let myData = this.requirements.find(x => x.name === args.target.innerText);
this.mousecontent = myData.requirementDetail;
}
It cannot find the data for the children because the data for those lines are actually in the subitems.
myArray[i].subitems[j].name and that code wouldn't find it.
Does anyone have any code laying around that would search that array recursively?
It's
Thanks
Attachment:
Requirements_Subitems_9a56ae96.zip