I am just trying to implement Rowdetails in my data table. I found an example in the site and just following. The only difference i am making is non server side processing and its throwing an exception. The version of js and css i am using from http://datatables.net/release-datatables/examples/server_side/row_details.html
$(document).ready(function() {
var dt = $('#example').dataTable( {
// "processing": true,
// "serverSide": true,
"ajax": "data/sis.json",
"columns": [
{
"class": "details-control",
"orderable": false,
"data": null,
"defaultContent": ""
},
{ data: "host" },
{ data: "backipv4" },
{ data: "frontipv4" },
{ data: "nagios" },
{ data: "currentproduct" }
],
"order": [[1, 'asc']]
} );