Deferred Rendering
Deferred Rendering
deathtospam
Posts: 10Questions: 0Answers: 0
How does deferred rendering work? Does the page make multiple calls to the page defined by "sAjaxSource", as it needs to render each page? Or does it pull it all down in one call and then store the info somewhere?
This discussion has been closed.
Replies
There is more information about each type of data source here: http://datatables.net/usage/#data_sources
Allan
Docs: http://datatables.net/usage/server-side
Example: http://datatables.net/release-datatables/examples/data_sources/server_side.html
The idea is to have an SQL engine (or whatever) do all the hard work of sorting data etc, since this is what they are designed and optimised for. This way the table can show millions of records, page at a time.
Allan