DataTables footerCallback和contenteditable

时间:2017-02-08 23:05:25

标签: javascript jquery datatables contenteditable

我有一个DataTable,它使用footerCallback对每列进行求和。这完全适用于每列中的数据,但我还想添加更改每个单元格正在求和的值的功能。我尝试过添加" contenteditable"对于那些单元格,但进行更改不会影响页脚中的总和。

这是一个简单的jsfiddle,显示我遇到的行为:https://jsfiddle.net/rantoun/552y9j90/6/

HTML:

<table id="table1">
  <thead>
    <tr>
      <th>Fruit</th>
      <th># Eaten</th>
      <th># Remaining</th>
    </tr>
  </thead>
  <tfoot>
    <tr>
      <th align="right">Count</th>
      <th align="left"></th>
      <th align="left"></th>
    </tr>
  </tfoot>
  <tbody>
    <tr>
      <td>Apples</td>
      <td contenteditable>3</td>
      <td contenteditable>8</td>
    </tr>
    <tr>
      <td>Oranges</td>
      <td contenteditable>6</td>
      <td contenteditable>5</td>
    </tr>
    <tr>
      <td>Bananas</td>
      <td contenteditable>2</td>
      <td contenteditable>9</td>
    </tr>
  </tbody>
</table>

jQuery的:

$("#table1").DataTable({
  "paging": false,
  "searching": false,
  "info": false,    
    "footerCallback": function ( row, data, start, end, display ) {

      var columns = [1, 2];
      var api = this.api();

      _.each(columns, function(idx) {

          var total = api
              .column(idx)
              .data()
              .reduce(function (a, b) {
                  return parseInt(a) + parseInt(b);
              }, 0)         

                $('tr:eq(0) th:eq('+idx+')', api.table().footer()).html(total);
      })

  }
});

我还找到了DataTables编辑器(https://editor.datatables.net/examples/inline-editing/simple),这对于这种情况非常适合 - 但它不是开源的。有关如何模仿此内联编辑功能的任何想法都是受欢迎的。我想避免用模态做这个。任何帮助表示赞赏!

1 个答案:

答案 0 :(得分:1)

这是一个答案,允许您使用contenteditable进行编辑。

请注意,这需要dataTables KeyTable plugin

Working Fiddle here

/* Note - requires datatable.keys plugin */
    var table = $("#table1").DataTable({

      "keys": true,     

      "paging": false,
      "searching": false,
      "info": false,    
        "footerCallback": function ( row, data, start, end, display ) {

          var columns = [1, 2];
          var api = this.api();

          _.each(columns, function(idx) {

              var total = api
                  .column(idx)
                  .data()
                  .reduce(function (a, b) {
                      return parseInt(a) + parseInt(b);
                  }, 0)         

                    $('tr:eq(0) th:eq('+idx+')', api.table().footer()).html(total);
          })

      }
    });

    // keys introduces the key-blur event where we can detect moving off a cell
    table
        .on( 'key-blur', function ( e, datatable, cell ) {

        // The magic part - using the cell object, get the HTML node value,
        // put it into the dt cell cache and redraw the table to invoke the 
        // footer function. 
            cell.data( $(cell.node()).html() ).draw()
        } );

注意 - 我可以预见您可能会输入非数字数据。你必须在key-blur事件中警告你可以测试dom节点值并相应地采取行动。