Datatables
Enter Valid JSON
Build Table
Definitions
How To Use
Input valid JSON into the textarea below (use the validator at json lint). Hit the submit button to generate your table. The table will generate below.
aoColumns
The title of each column.
aaData
The data for the cells. Each table row is an array.
Documentation
Datatables.net
JSON example
{
    "aoColumns": [
        {
            "sTitle": "Column One" 
        },
        {
            "sTitle": "Column Two" 
        },
        {
            "sTitle": "Column Three" 
        },
        {
            "sTitle": "Column Four" 
        },
        {
            "sTitle": "Column Five" 
        } 
    ],
    "aaData": [
        [
            "Data for column 1",
            "Data for column 2",
            "Data for column 3",
            "Data for column 4",
            "Data for column 5" 
        ] 
    ] 
}