DataTables 1.7.6 released
DataTables 1.7.6 released
allan
Posts: 63,488Questions: 1Answers: 10,467 Site admin
Hello all,
It is with great pleasure that I can release DataTables 1.7.6. This is a bug fix release of DataTables, which will likely draw the 1.7.x series of releases to a close (unless anything really serious is found!) so work can begin in ernest on the next major update.
DataTables 1.7 has proven itself in terms of stability, and this release increases that standing by fixing a number of small bugs and little niggles. I've been taking DataTables to its limits recently (and enjoyed it immensely!) and found a few little things which needed to be tidied up along the way. This release includes those fixes and a few other minor changes.
The latest release package (which includes all of the latest plug-ins including the newly releases ColVis 1.0.1, ColReorder 1.0.4 and TableTools 2.0.1) can be downloaded from here:
http://datatables.net/releases/DataTables-1.7.6.zip
Documentation as always is available on this site as a whole, particularly the usage and API sections:
http://datatables.net/usage
http://datatables.net/api
Release notes are available on the download page:
http://datatables.net/download
Finally, if you are using DataTables and find it useful, please do consider making a donation. These donations allow me to continue developing DataTables: http://datatables.net/donate :-)
Enjoy!
Allan
It is with great pleasure that I can release DataTables 1.7.6. This is a bug fix release of DataTables, which will likely draw the 1.7.x series of releases to a close (unless anything really serious is found!) so work can begin in ernest on the next major update.
DataTables 1.7 has proven itself in terms of stability, and this release increases that standing by fixing a number of small bugs and little niggles. I've been taking DataTables to its limits recently (and enjoyed it immensely!) and found a few little things which needed to be tidied up along the way. This release includes those fixes and a few other minor changes.
The latest release package (which includes all of the latest plug-ins including the newly releases ColVis 1.0.1, ColReorder 1.0.4 and TableTools 2.0.1) can be downloaded from here:
http://datatables.net/releases/DataTables-1.7.6.zip
Documentation as always is available on this site as a whole, particularly the usage and API sections:
http://datatables.net/usage
http://datatables.net/api
Release notes are available on the download page:
http://datatables.net/download
Finally, if you are using DataTables and find it useful, please do consider making a donation. These donations allow me to continue developing DataTables: http://datatables.net/donate :-)
Enjoy!
Allan
This discussion has been closed.
Replies
When using on a page where I have two datatables using jquery UI skin, when typing in search terms, the table grows on the right...
Downgraded to 1.7.5 and it's fine again
Allan
the first has an ajaxsource, the second has its data in the table
[code]
$('#dashpat').dataTable({
"sAjaxSource": "xxxxxxxxxxxxxx",
"bPaginate": false,
"bScrollInfinite": true,
"bScrollCollapse": true,
"sScrollY": "200px",
"bInfo": true,
"bJQueryUI": true,
"bProcessing": true,
"bStateSave": true,
"oLanguage": {"sUrl": "xxxxxxxxxxxx/media/js/fr_FR.json"},
"aoColumns": [
{"bSearchable":true,"sWidth":"120px"}, //nom
{"bSearchable":true,"sWidth":"120px"}, //prenom
{"bSearchable":false,"sWidth":"70px"}, //age
{"bSearchable":true,"sWidth":"70px"}, //code_postal
{"bSearchable":true,"sWidth":"80px"} //lieu
]
});
$('#rdvpat').dataTable({
"bPaginate": false,
"bScrollInfinite": true,
"bScrollCollapse": true,
"sScrollY": "200px",
"bProcessing": true,
"bJQueryUI": true,
"bStateSave": true,
"oLanguage": {"sUrl": "xxxxxxxxxxx/media/js/fr_FR.json"},
"aoColumns": [
{"bSearchable":false,"sWidth":"100px","sType":"title-numeric", "asSorting":["asc","desc"]}, //date
{"bSearchable":true,"sWidth":"100px"}, //nom+prenom
{"bSearchable":false,"sWidth":"50px"} //lieu
]
});
});
[/code]
In this.fnGetData there is not a var aRowData, not sure if it should be in that function or not but I am assuming it should be declared at some point before the line:
[code]return ( (aRowData = oSettings.aoData[iRow]) ? aRowData._aData : null);[/code]
[code]
return (typeof oSettings.aoData[iRow] != 'undefined') ?
oSettings.aoData[iRow]._aData : null;
[/code]
There is a similar issue in fnGetNodes which should be:
[code]
return (typeof oSettings.aoData[iRow] != 'undefined') ? oSettings.aoData[iRow].nTr : null;
[/code]
My apologies for that.
@quinode - thanks for the init code - I'll take a look and get back to you.
Allan
Good luck with version 2.0!
I've run into an issue though, I 2 tables on the page, the second opens up in a dialog and the data in the table is changed based on the selection in the first table.
After upgrading, the data in the 2nd table (in the pop-up) is being filtered out. Example text: Showing 0 to 0 of 0 entries (filtered from 2 total entries)
I'm not sure how to remove this filter. I did not have this issue before upgrading to 1.7.6.
here's my initialization code:
[code]
campaignsTable = $('#campaignsTable').dataTable({'sDom': "T<'clear'>lfrtip",'oTableTools':{'aButtons':['csv', 'xls', 'pdf'], 'sSwfPath':'/js/plugins/dataTables/extras/TableTools/media/swf/copy_cvs_xls_pdf.swf'}, 'fnDrawCallback': function() { $(this).fadeIn(1000); }, 'bAutoWidth':false, 'aaSorting':[[0, 'asc']], 'aoColumns': columns, 'sPaginationType': 'full_numbers', 'iDisplayLength':5, 'aLengthMenu':[5, 10, 20, 50]});
[/code]
Allan
"Component returned failure code: 0x80004003 (NS_ERROR_INVALID_POINTER) [nsIDOMHTMLTableRowElement.removeChild]" nsresult: "0x80004003 (NS_ERROR_INVALID_POINTER)" location: "JS frame :: jscripts/jquery.dataTables.js :: _fnDrawHead :: line 2894" data: no]
Any way around this?
Thanks!
Allan
Thanks for the continued development of your excellent software!
I am Czech and we use: DD.MM.YY
I need to be ranked according to the date of this format.
thank you
Lukas
Have a look at this post from myself (and a number of other similar posts in the forum): http://datatables.net/forums/comments.php?DiscussionID=4474&page=1#Item_2 . A date sorting plug-in will do the job :-)
Allan