Data Format - fairmutex/FTable GitHub Wiki
It takes a JavaScript array of Objects
var data = [
{
"id": 0,
"name": "Ellison",
"surname": "Guy",
"email": "[email protected]",
"age": 32,
"status": "Disabled",
"picture": "http://placehold.it/32x32",
"dateOfBirth": "2018-06-12T08:51:16.000Z"
},
{
"id": 1,
"name": "Briggs",
"surname": "Hardy",
"email": "[email protected]",
"age": 40,
"status": "Enabled",
"picture": "http://placehold.it/32x32",
"dateOfBirth": "2018-06-09T07:33:25.000Z"
}
];