datatable index column server side

Solutions on MaxInterview for datatable index column server side by the best coders in the world

showing results for - "datatable index column server side"
Sofia
28 Oct 2019
1table.on('draw.dt', function () {
2    var info = table.page.info();
3    table.column(0, { search: 'applied', order: 'applied', page: 'applied' }).nodes().each(function (cell, i) {
4        cell.innerHTML = i + 1 + info.start;
5    });
6});
7