I call the function tabulator() with these params.
$("#tableObj").tabulator("addRow", {id:1, Name:"John", Age:"20"}, true);
I want to pass the Array elements name dynamically,
read from a Json ( '{id:1, Name:"John", Age:"20"}' ).
I mean that column names will change.
Ex : {id:1, Company:"myComp", Address:"myaddress"}
How can I create theses objs from Strings or JSon text?
tabulator(). Are you using a plugin?var obj = JSON.parse(text)