DataTables 1.5.1 released
DataTables 1.5.1 released
allan
Posts: 61,972Questions: 1Answers: 10,160 Site admin
Hello all,
Now that the dust has settled from the 1.5.0 release and there has been time for to it be "bashed around" a bit, a number of bugs have come to light. These have been addressed in this new 1.5.1 release which focuses solely on stabilisation.
You can download DataTables 1.5.1 here:
http://datatables.net/releases/dataTables-1.5.1.zip
Full release notes:
http://datatables.net/download
Also, please make a donation to help support DataTables for future releases and support in this forum :-) :
http://datatables.net/donate
Enjoy!
Regards,
Allan
Now that the dust has settled from the 1.5.0 release and there has been time for to it be "bashed around" a bit, a number of bugs have come to light. These have been addressed in this new 1.5.1 release which focuses solely on stabilisation.
You can download DataTables 1.5.1 here:
http://datatables.net/releases/dataTables-1.5.1.zip
Full release notes:
http://datatables.net/download
Also, please make a donation to help support DataTables for future releases and support in this forum :-) :
http://datatables.net/donate
Enjoy!
Regards,
Allan
This discussion has been closed.
Replies
I found the following
nPrevious.setAttribute( 'id', oSettings.sTableId+'_previous' );
nPrevious.setAttribute( 'id', oSettings.sTableId+'_previous' );
and should be:
nFirst.setAttribute( 'id', oSettings.sTableId+'_first' );
nPrevious.setAttribute( 'id', oSettings.sTableId+'_previous' );
Yup - nice one. That will be in the next release. Thanks for pointing that out :-)
Allan