服务器端数据表串行无显示

时间:2018-12-27 11:39:12

标签: javascript datatable codeigniter-3

我的代码是

$(document).ready(function() {
    $('#datatable').dataTable( { 
        "bProcessing": true,
        'language': {
            'loadingRecords': ' ',
            'processing': 'Loading...'
        },
        "columnDefs": [  
                 { "width": "5%", "targets": [0] }  
        ], 
        "bServerSide": true,
        "sAjaxSource": "<?php echo site_url();?>membershipapplication/Reviewpayment/statusupdate1",

        "fnRowCallback" : function(nRow, aData, iDisplayIndex){
            $("td:first", nRow).html(iDisplayIndex +1);
           return nRow;
        },
     } );
  } );

单击分页后,数字再次从1到10。但是我需要数字的连续性。请任何人帮助我。

0 个答案:

没有答案