Hi,
I was using this code to initialize FixedHeader
$('table.table-fixed-header').each(function() {
new FixedHeader(this);
});
And got that error, which comes from these lines
var dt = $.fn.dataTable.Api ?
new $.fn.dataTable.Api( mTable ).settings()[0] :
mTable.fnSettings();
dt._oPluginFixedHeader = this;
/* Let's do it */
this.fnInit( dt, oInit );
I was using datatable and fixedheader from the master branch.
Is my initialization code wrong or is this a bug?