Uncaught TypeError: Cannot read property 'className' of undefined when using FixedColumns and themes
Uncaught TypeError: Cannot read property 'className' of undefined when using FixedColumns and themes
russ0519
Posts: 1Questions: 0Answers: 0
http://live.datatables.net/ejejaw/3
Code:
$(document).ready(function() {
var oTable = $('#example').dataTable({
"sScrollX": "100%",
"bJQueryUI": true
});
new FixedColumns( oTable );
} );
Seems like having FixedColumns enabled while having sScrollX and bjQueryUI properties breaks things.
Try clicking on any of the columns to sort.
Code:
$(document).ready(function() {
var oTable = $('#example').dataTable({
"sScrollX": "100%",
"bJQueryUI": true
});
new FixedColumns( oTable );
} );
Seems like having FixedColumns enabled while having sScrollX and bjQueryUI properties breaks things.
Try clicking on any of the columns to sort.
This discussion has been closed.
Replies
Download the nightly from http://datatables.net/download
Allan