DataTables 1.9.4 released
DataTables 1.9.4 released
allan
Posts: 63,498Questions: 1Answers: 10,470 Site admin
Hello all,
I'm really pleased to announce the release of DataTables 1.9.4. Alongside a number of bug fixes in this release, there are a number of performance improvements from Tim Tucker and jlabanca which makes reading data from the DOM and drawing when scrolling is enabled much faster.
One important note from this release is that fnRender is now fully deprecated and will be removed in DataTables 1.10. mRender is now the method to use to preprocess data for display.
With this release, development of DataTables will now shift focus to the v1.10 major release. I'm really looking forward to seeing the items that are planned for this release fully implemented, as this could be one of the biggest releases since v1. For more information about the v1.10 plans, see the DataTables roadmap: http://datatables.net/development/roadmap .
This latest release can be downloaded from the downloads page or directly with this link:
http://datatables.net/releases/DataTables-1.9.4.zip .
*edit* DataTables 1.9.4 is now available on the Microsoft CDN:
http://www.asp.net/ajaxLibrary/CDNjQueryDataTables194.ashx .
If you find any issues with this release, please *open a new thread* with a detailed description of the problem, so we can keep track of individual issues.
It takes a lot of time and effort to develop and support DataTables, so if you find it useful, please consider helping further support and development by making a donation towards the project: http://datatables.net/donate .
Enjoy!
Allan
I'm really pleased to announce the release of DataTables 1.9.4. Alongside a number of bug fixes in this release, there are a number of performance improvements from Tim Tucker and jlabanca which makes reading data from the DOM and drawing when scrolling is enabled much faster.
One important note from this release is that fnRender is now fully deprecated and will be removed in DataTables 1.10. mRender is now the method to use to preprocess data for display.
With this release, development of DataTables will now shift focus to the v1.10 major release. I'm really looking forward to seeing the items that are planned for this release fully implemented, as this could be one of the biggest releases since v1. For more information about the v1.10 plans, see the DataTables roadmap: http://datatables.net/development/roadmap .
This latest release can be downloaded from the downloads page or directly with this link:
http://datatables.net/releases/DataTables-1.9.4.zip .
*edit* DataTables 1.9.4 is now available on the Microsoft CDN:
http://www.asp.net/ajaxLibrary/CDNjQueryDataTables194.ashx .
If you find any issues with this release, please *open a new thread* with a detailed description of the problem, so we can keep track of individual issues.
It takes a lot of time and effort to develop and support DataTables, so if you find it useful, please consider helping further support and development by making a donation towards the project: http://datatables.net/donate .
Enjoy!
Allan
This discussion has been closed.
Replies
As a new DataTables and Editor user, I can say that, along with the outstanding support, these have been some of the best libraries that I have used in a long time. I'm extremely happy with my investment as they've opened up a whole new world of opportunities that I've been putting off far too long.
Cheers,
Kevin P.
Fantastic to hear - thank you :-)
Regards,
Allan
Allan
Kevin
Allan
It seems that sDefaultContent isn't processed anymore
[code]
"aoColumns": [
...
{sName" : "ivaperc", "sWidth" : "40px", "sClass" : "right"},
{ "sName": "id",
"sWidth": "60px",
"sClass": "operazioni center",
"bSortable": false,
"bSearchable" : false ,
"mDataProp": null,
"sDefaultContent": " "} ],
[/code]
Please also link us to a page that shows the problem.
Allan
i changed mDataProp everywhere with mData and it now works
Allan
[code]
"aoColumnDefs": [
{ "aTargets": [0] },
{ "aTargets": [1] },
{ "aTargets": [2] },
{ "aTargets": [3] },
{ "bSortable": false, "sWidth": "75px", "sName": "Details", "aTargets": [-1], "fnRender": function (oObj) {
return 'Edit Record'
}
}
]
[/code]
The 5th Column was getting generated by the fnRender. Now I am getting an Error unknown Parameter. What is the new way of coding this?
Thanks