I follow this library https://l-lin.github.io/angular-datatables/archives/#!/serverSideProcessing to create a server-side processing datatable. It works very well but may I know how to get current page?
var vm = this;
vm.dtOptions = DTOptionsBuilder.newOptions()
.withOption('ajax', {
// Either you specify the AjaxDataProp here
url: 'api/bank_recon/fetch_trx',
type: 'POST',
})
.withDataProp('data')
.withOption('processing', true)
.withOption('serverSide', true)
.withPaginationType('full')