treegrid extension for datatables
npm install datatables-treegridleft`: indent of children`expandIcon`: expand icon html`collapseIcon`: collapse icon htmlUsage
the row data should contain a property "children" as blow:
`
{
"data":
[
{
"name": "Tiger Nixon",
...
"children": [
{
"name": "Hermione Butler",
...
}
]
}
]
}
`
the js initialization part as blow:
`html
$('#example').DataTable({
'treeGrid': {
'left': 10,
'expandIcon': '+',
'collapseIcon': '-'
}
});
``