Ajax Load DataTable with Pagination

Ajax Load DataTable with Pagination

blpraveen2004blpraveen2004 Posts: 15Questions: 2Answers: 0

Once the Page is loaded
While navigating to previous pages it loads from the server side.
Why it does not saves the data on load and only load next pages?

Answers

  • blpraveen2004blpraveen2004 Posts: 15Questions: 2Answers: 0
    edited January 2016

    how do I update the row inside createRow function

    "createdRow" : function( nRow, aData, iDisplayIndex ) {
                    var $row1 = $('td:eq(1)', nRow).find('.progress').eq(0); 
                   $.ajax({url: "url",dataType:"json", type:'POST',data:{ data:$data}, success: function(result) {
                        fnUpdate( nRow, false);
                    },
                    });
                },
    
This discussion has been closed.