FixedColumns.js nightly = no diff in v.1.8.1
FixedColumns.js nightly = no diff in v.1.8.1
Gust
Posts: 17Questions: 0Answers: 0
Hello Allan,
In the release note it write :
FixedColumns:
If you are using multiple rows in your thead or tfoot elements, the handling for this has changed for DataTables 1.8, and this has a knock on effect on the FixedColumns extra. Please update to the latest nightly of FixedColumns.
http://www.datatables.net/upgrade/1.8
But there is not seems to have any diffrence between file in the zip or the one I got from this URL :
http://www.datatables.net/download/build/FixedColumns.nightly.js
I maybe used a wrong URL since I guess the URL to get the file it because there is not direct link on all the files of the nigthly build...
Thanks
Gust
In the release note it write :
FixedColumns:
If you are using multiple rows in your thead or tfoot elements, the handling for this has changed for DataTables 1.8, and this has a knock on effect on the FixedColumns extra. Please update to the latest nightly of FixedColumns.
http://www.datatables.net/upgrade/1.8
But there is not seems to have any diffrence between file in the zip or the one I got from this URL :
http://www.datatables.net/download/build/FixedColumns.nightly.js
I maybe used a wrong URL since I guess the URL to get the file it because there is not direct link on all the files of the nigthly build...
Thanks
Gust
This discussion has been closed.
Replies
Allan
$(document).ready( function () {
var oTable = $('.display').dataTable( {
"bJQueryUI": true,
"bAutoWidth": false,
"bScrollInfinite": true,
"sScrollY": "300px",
"sScrollX": "100%",
"bPaginate": false,
"bProcessing": true,
"bSortClasses" : false,
"oLanguage": {
"sSearch": "Search:"
},
} );
new FixedColumns( oTable, {
"columns": 1
} );
} );
When I change columns : 1 for :
new FixedColumns( oTable, {
"columns": 2
} );
It still use only one column?
Gust
Allan
Thank you Allan for the good work.
Gust