FixedColumn initialization error for Google Chrome only
FixedColumn initialization error for Google Chrome only
Hello, I am using FixedColumn in conjunction with DataTable and have encountered an issue where an error occurs during initialization of FixedColumn. I have tested this on Firefox and Safari and have not come upon this issue. The problem only occurs randomly so I am not sure where the problem could be. Below is the code being used.
$j(document).ready(function() {
bfDataTable = $j('#bfTable').DataTable( {
scrollY: "1200px",
scrollX: true,
scrollCollapse: true,
paging: false
} );
new $j.fn.dataTable.FixedColumns( bfDataTable, {
leftColumns: 1,
rightColumns: 1
} );
} );
The following error occurs:
Uncaught TypeError: Cannot read property 'FixedColumns' of undefined
Any idea why this would be occurring ? Thanks in advance for the help!