What are the other ways to call $.fn.dataTable.pipeline( {
What are the other ways to call $.fn.dataTable.pipeline( {
VijaySS
Posts: 3Questions: 1Answers: 0
Regarding - https://datatables.net/examples/server_side/pipeline.html
What are the other ways to call $.fn.dataTable.pipeline( {
Can I call it like this.
var result = $.ajax($.fn.dataTable.pipeline( {
url: 'data.json',
pages: 1
} )).done(function () {
//
}).fail(function (result, exception) {
//
});
This discussion has been closed.
Answers
What are you trying to do? The purpose of that code is to cache paging for datatable. If you are taking it out of the datatable, you must have a diffrentt goal in mind.
Yes, I want to work with dynamic columns and data, along with lazy loading [pipeline].