1

我有这个代码清单,我想添加一个指向数据表的链接,我收到一个错误:DataTables 警告(表 id = 'example'):从第 0 行的数据源请求未知参数'3',当我点击好的,它不会加载我添加的链接,这是我的代码

<script type="text/javascript" charset="utf-8">        
    $(document).ready(function() {
        var oTable = $('#example').dataTable( {
            "bProcessing": true,
            "sAjaxSource": "<?php echo base_url('operations/dataDisplayBanks/'); ?>",

            "aoColumns": [
                { "mData": "bank_id" },
                { "mData": "bank_name" },
                { "mData": "absolute_amount" },
                {
                    "fnRowCallback": function( nRow, aData, iDisplayIndex ) {
                        $('td:eq(3)', nRow).html('<?php echo base_url() ?>operations/display/' + aData[0] + '">' +
                            aData[0] + '</a>');
                        return nRow;
                    }
                },

            ]

        } );

    } );
</script>


<div id="demo">
    <table cellpadding="0" cellspacing="0" border="0" class="display" id="example">
        <thead>
            <tr>
                <th>Client ID</th>
                <th>Client Name</th>
                <th>Absolute Limit</th>  
                <th>History</th> 

            </tr>
        </thead>
        <tbody> 
        </tbody>
        <tfoot>

    </table>
</div>
4

2 回答 2

4

编辑我的意思是说 mRender 更适合在服务器端实现上使用 FnRowCallback 从数据创建 url

这是使用您的代码的示例,添加并删除 FnRowCallback

  { "mData": null , //its null here because history column will contain the mRender
    "mRender" : function ( data, type, full ) {
    return '<a href="<?php echo base_url(); ?>operations/display/'+full[0]+'">'+full[0]+'</a>';}
  },

文档:http ://www.datatables.net/release-datatables/examples/advanced_init/column_render.html

于 2013-05-23T03:56:45.987 回答
1

您需要输入aoColumnshistory 属性,这应该可以解决您看到的错误。Datatables 期望表中的每一列都有一个值,即使您计划以编程方式设置该值。我还没有找到解决这个问题的方法。

此外,您fnRowCallback不应该成为aoColumns. fnRowCallback应该是数据表配置对象的一部分(即 的对等体aoColumns)。

您的配置将如下所示:

{
    "bProcessing": true,
    "sAjaxSource": "<?php echo base_url('operations/dataDisplayBanks/'); ?>",
    "aoColumns": [
        { "mData": "bank_id" },
        { "mData": "bank_name" },
        { "mData": "absolute_amount" },
        { "mData": "history" } //need an entry here for history
    ],
    "fnRowCallback": function(nRow, aData, iDisplayIndex) {...}
}

您的数据将如下所示:

[{
    "bank_id":1,
    "bank_name": "Fred's Bank",
    "absolute_amount": 1000,
    "history": ""
},
...
]
于 2013-05-22T17:32:58.827 回答