dan-dr / dataTables.treeGrid.js

TreeGrid extension for jquery DataTables

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

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

dataTables.treeGrid.js

TreeGrid extension for jquery DataTables

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.

About

TreeGrid extension for jquery DataTables

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

License:MIT License


Languages

Language:JavaScript 100.0%