Ajax option - pagination not working

Ajax option - pagination not working

shivPshivP Posts: 1Questions: 1Answers: 0
edited February 2018 in Free community support

Hi,

I have used ajax options method to get the data as below,

$('#example').dataTable( {
"ajax": function (data, callback, settings) {
dataSourceFunction(data).then(function (_data) {
console.info(_data);
callback(_data);
});
}
} );

Here the pagination is not working, the data is fetching from the DB but the table is not getting update

Answers

This discussion has been closed.