不能初始化行重新排序插件- rowReordering不是一个函数

Cannot initialize Row Reordering plugin - rowReordering is not a function

本文关键字:rowReordering 函数 一个 插件 新排序 初始化 不能 排序      更新时间:2023-09-26

我正在使用jQuery数据表与行重新排序插件,由于某种原因,我收到以下错误消息:

Uncaught TypeError: $(…). datatable(…)。rowReordering不是一个函数

$(document).ready(function() {
        $('#demo').html('<table cellpadding="0" cellspacing="0" border="0" class="display cell-border"  id="example" ></table>');
        t = $('#example').DataTable({
            "columns": 
            [
                {width: "10%", "className": "ageClass", "title": "Priority",         "data": "priority" },
                {"className": "actionClass", "title": "Action",         "data": "action" },
            ],
            "bPaginate": false,
            "bLengthChange": false,
            "bFilter": false,
            "bInfo": false,
            "bAutoWidth": false,
            "scrollY":        "200px",
            "scrollCollapse": true,
            "paging":         false
        }).rowReordering();;
        // This line is where the console says the error is
        for (var i = 0; i < 10; i ++)
        {
            t.row.add(
            {
                priority: i,
                action: i,
            }).draw();
        }    
    });
HTML:

<div id="demo"> </div>

我只是在做下面描述的事情:https://code.google.com/p/jquery-datatables-row-reordering/wiki/Index

原始行重新排序插件与datatable 1.10不兼容。

$(selector).DataTable()方法是在DataTables 1.10中Row Reordering addon最后一次更新之后添加的。

<

解决方案/strong>

要使用rowReordering(),您需要将表初始化为$('#example').dataTable(),而不是$('#example').DataTable()

For datatable 1.10

我已经在github上分叉了附加组件,并添加了对DataTables 1.10的支持通过在评论中提出建议。

请参阅jQuery DataTables - Row Reordering文章了解更多细节和演示。

$(document).ready( function () {
   var table = $('#example').DataTable({
      "createdRow": function( row, data, dataIndex ) {
         $(row).attr('id', 'row-' + dataIndex);
      }    
   });
   for(var i = 1; i <= 100; i++){
      table.row.add([ 
         i,
         i + '.2',
         i + '.3',
         i + '.4',
         i + '.5',
         i + '.6'
      ]);
   }  
   
   table.draw();
   
   table.rowReordering();
} );
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8 />
<title>jQuery DataTables</title>  
<link href="//cdn.datatables.net/1.10.7/css/jquery.dataTables.min.css" rel="stylesheet" type="text/css" />
<script src="http://code.jquery.com/jquery-1.11.3.min.js"></script>
<script src="http://cdn.datatables.net/1.10.7/js/jquery.dataTables.min.js"></script>
<script src="https://code.jquery.com/ui/1.9.2/jquery-ui.min.js"></script>
<script src="http://mpryvkin.github.io/jquery-datatables-row-reordering/1.2.3/jquery.dataTables.rowReordering.js"></script>
</head>
  
<body>
<table id="example" class="display" width="100%">
<thead>
<tr>
  <th>Name</th>
  <th>Position</th>
  <th>Office</th>
  <th>Age</th>
  <th>Start date</th>
  <th>Salary</th>
</tr>
</thead>
<tfoot>
<tr>
  <th>Name</th>
  <th>Position</th>
  <th>Office</th>
  <th>Age</th>
  <th>Start date</th>
  <th>Salary</th>
</tr>
</tfoot>
<tbody>
</tbody>
</table>
</body>
</html>