无法获得房产' aDataSort'未定义或空引用的

时间:2015-12-31 10:12:44

标签: jquery twitter-bootstrap bootstrap-table

我试图对表有搜索选项..这是代码

$('#dtreport').dataTable({
                    "oLanguage": {
                        "sLengthMenu": 'Display <select name="dtAgents_length" aria-controls="dtAgents" class="form-control input-sm">' +
                                                    '<option value="5">5</option>' +
                                                    '<option value="10">10</option>' +
                                                    '<option value="25">25</option>' +
                                                    '<option value="50">50</option>' +
                                                    '<option value="75">75</option>' +
                                                    '<option value="100">100</option>' +
                                                    '<option value="-1">All</option>' +
                                                '</select> records',
                        "sInfo": '<label>Displaying _START_ to _END_ of _TOTAL_ records.</label>',
                        "sZeroRecords": '<center><span style="color: red;"><i class="fa fa-users fa-2x"></i>  No report found.</span></center>',
                        "sInfoEmpty": '<label>Displaying 0 to 0 of 0 records.</label>',
                        "sInfoFiltered": '<label>(filtered from _MAX_ total entries)</label>'
                    },
                    "aLengthMenu": [[5, 10, 25, 50, 75, 100, -1], [5, 10, 25, 50, 75, 100, 'All']],
                    "iDisplayLength": 5
                });

我遇到了不同的运行时错误,例如

如果表是空的

  

jquery.dataTables.min.js第62行第340行未处理的异常

0x800a138f - JavaScript运行时错误:无法获取属性&#39; aDataSort&#39;未定义或空引用

如果表有数据

  

jquery.dataTables.min.js第85行第496行未处理的异常

0x800a138f - JavaScript运行时错误:无法获取属性&#39; parentNode&#39;未定义或空引用

请帮助解决这个问题......  谢谢....

0 个答案:

没有答案