An example of how to display data that has parent child hierarchy in a table where each element (row) can have other tables as can have table as a child
- Sort by any element in table
- Search using any element
- Expand and collapse
- Propreties to display in table can are configurable
[
{
"parentId": "1",
"name": "Parent1",
"children": [
{
"childId": 1,
"firstChildName": "FirstChild1",
"children": [
{
"grandChildId": 1,
"grandChildName": "grandChild1"
}
]
}
]
}
]