mirror of
https://github.com/DataTables/DataTables.git
synced 2024-11-30 12:24:10 +01:00
8d56d0204e
Removed: fnRender - fnRender was depricated in 1.9 and is now being completely removed here. Its always been a bit messy and is now superseded by mRender. The main reason for this is that DataTables use to take an independent copy of the input data source object / array. This is a performance hit and it means we can't do any binding to external objects (for example it makes Knockout integration almost impossible). Removed: bUseRendered - with fnRender being removed, bUseRendered is irrelevent Updated: With fnRender being removed we no longer need to take an independent copy of the data source object / array (since DataTables itself isn't ever going to write to it now - fnRender did and the copy was included so we didn't inadvertantly change a developers data source object without them knowing about it. This is no longer a problem, and in fact having it use the same data source object is extremely useful in many cases.
12 lines
187 B
JSON
12 lines
187 B
JSON
{
|
|
"name": "DataTables",
|
|
"version": "1.10.0.dev",
|
|
"main": [
|
|
"./media/js/jquery.dataTables.js",
|
|
"./media/css/jquery.dataTables.css",
|
|
],
|
|
"dependencies": {
|
|
"jquery": "~1.8.0"
|
|
}
|
|
}
|