mirror of
https://github.com/DataTables/DataTables.git
synced 2024-12-03 15: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.
35 lines
788 B
JSON
35 lines
788 B
JSON
{
|
|
"name": "DataTables",
|
|
"version": "1.10.0.dev",
|
|
"title": "DataTables",
|
|
"author": {
|
|
"name": "Allan Jardine",
|
|
"url": "http://sprymedia.co.uk"
|
|
},
|
|
"licenses": [
|
|
{
|
|
"type": "BSD",
|
|
"url": "http://datatables.net/license_bsd"
|
|
},
|
|
{
|
|
"type": "GPLv2",
|
|
"url": "http://datatables.net/license_gpl2"
|
|
}
|
|
],
|
|
"dependencies": {
|
|
"jquery": "1.4 - 1.8"
|
|
},
|
|
"description": "DataTables enhances HTML tables with the ability to sort, filter and page the data in the table very easily. It provides a comprehensive API and set of configuration options, allowing you to consume data from virtually any data source.",
|
|
"keywords": [
|
|
"DataTables",
|
|
"DataTable",
|
|
"table",
|
|
"grid",
|
|
"filter",
|
|
"sort",
|
|
"page",
|
|
"internationalisable"
|
|
],
|
|
"homepage": "http://datatables.net"
|
|
}
|