I try to use jQuery DataTables but I get the error
TypeError: c is undefined
I don\'t know what is wrong with my code as I can s
In my case, missing aaData in sever side return result.
//Javascript $('#table').DataTable({ sAjaxSource: '/load', aoColumns: [ ... ], }); //server side(in Rails) render json: {'aaData'=>data}