1.0.4 • Published 5 years ago

datatables-treegrid v1.0.4

Weekly downloads
6
License
MIT
Repository
github
Last release
5 years ago

dataTables.treeGrid.js

TreeGrid extension for jquery DataTables@1.10.19

Demo

https://homfen.github.io/dataTables.treeGrid.js

Options

left: indent of children

expandIcon: expand icon html

collapseIcon: collapse icon html

Usage

the row data should contain a property "children" as blow:

{
"data": 
    [
        {
            "name": "Tiger Nixon",
            ...
            "children": [
                {
                    "name": "Hermione Butler",
                    ...
                }
            ]
        }
    ]
}            

the js initialization part as blow:

$('#example').DataTable({
    'treeGrid': {
        'left': 10,
        'expandIcon': '<span>+</span>',
        'collapseIcon': '<span>-</span>'
    }
});

License

MIT license.