I have a local JSON object formatted like this:
[{
\"id\": \"58\",
\"country_code\": \"UK\",
\"title\": \"Legal Director\",
\"pubdate\": \"20
I encoutered the same problem, solution is like this:
Place $('#list_table').dataTable
code in setTimeout
function to postpone dataTable application for 5 seconds:
setTimeout("$('#list_table').dataTable ...." , 5000);
I noticed that apply dataTable plugin in firebug after the table is loaded, it doesn't show error as "No data available in table".