What are the other ways to call $.fn.dataTable.pipeline( {

What are the other ways to call $.fn.dataTable.pipeline( {

VijaySSVijaySS 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) {
//
});

Answers

  • bindridbindrid Posts: 730Questions: 0Answers: 119

    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.

  • VijaySSVijaySS Posts: 3Questions: 1Answers: 0

    Yes, I want to work with dynamic columns and data, along with lazy loading [pipeline].

This discussion has been closed.