Posted 6 February 2020, 6:59 pm EST
Hi Team
When I click on a item in my wijmo hierarchical grid, if there is any child items for that clicked then the child items also should be auto selected. I’m having code like below which selects only the clicked item but not sure how to proceed it with children.
this.myGrid.select(-1, -1);
this.myGrid.rows.forEach(row => {
if (row.dataItem.label === e.toElement.innerText.trim()) {
row.isSelected = true;
if (row.dataItem.Children) {
} } else { row.isSelected = false; }
please advice.
Thanks in advance.