代码之家  ›  专栏  ›  技术社区  ›  Massifox

如何在数据表中将ordercells设置为中间行?

  •  1
  • Massifox  · 技术社区  · 5 年前

    我正在使用 DataTables . 我希望排序链接到第二个跨度行,这意味着在 名字 细胞而不是 笨蛋 .

    代码:

    $(document).ready(function () {
      var table = $('#example').DataTable({
        orderCellsTop: true, //move sorting to top header
      });
    });
    

    HTML:

    <table id="example" class="display nowrap" width="100%">
        <thead>
          <tr>
            <th>Dummy</th>
          </tr>
          <tr>
            <th>Name</th>
            <th>Position</th>
            <th>Office</th>
            <th>Age</th>
            <th>Start date</th>
            <th>Salary</th>
          </tr>
          <tr>
            <th>Name1</th>
            <th>Position1</th>
            <th>Office1</th>
            <th>Age1</th>
            <th>Start date1</th>
            <th>Salary1</th>
          </tr>
        </thead>
        .....
    

    这里是一个 live demo .

    1 回复  |  直到 5 年前
        1
  •  1
  •   Prashant Pokhriyal    5 年前

    你可以做点小调整

    • 添加 colspan=2 笨蛋 页眉:

      <th colspan="2">Dummy</th>
      
    • 现在在后面添加一个空标题 名字 NAME1 页眉:

      <th>Name</th>
      <th></th>
      
    • 同样,在 名字 专栏:

      <td>Tiger Nixon</td>
      <td></td>
      
    • 最后,添加 columnDefs 数据表初始化选项:

      columnDefs: [{ 
        visible: false, 
        targets: 1 
      }]
      

    最终代码如下:

    $(document).ready(function() {
      var table = $('#example').DataTable({
        orderCellsTop: true,
        columnDefs: [{
          visible: false,
          targets: 1
        }]
      });
    });
    <!DOCTYPE html>
    <html>
    
    <head>
      <script src="http://code.jquery.com/jquery-1.11.3.min.js"></script>
    
      <link href="https://nightly.datatables.net/css/jquery.dataTables.css" rel="stylesheet" type="text/css" />
      <script src="https://nightly.datatables.net/js/jquery.dataTables.js"></script>
    
      <meta charset=utf-8 />
      <title>DataTables - JS Bin</title>
    </head>
    
    <body>
      <div class="container">
        <table id="example" class="display nowrap" width="100%">
          <thead>
            <tr>
              <th colspan="2">Dummy</th>
            </tr>
            <tr>
              <th>Name</th>
              <th></th>
              <th>Position</th>
              <th>Office</th>
              <th>Age</th>
              <th>Start date</th>
              <th>Salary</th>
            </tr>
            <tr>
              <th>Name1</th>
              <th></th>
              <th>Position1</th>
              <th>Office1</th>
              <th>Age1</th>
              <th>Start date1</th>
              <th>Salary1</th>
            </tr>
    
          </thead>
    
          <tbody>
            <tr>
              <td>Tiger Nixon</td>
              <td></td>
              <td>System Architect</td>
              <td>Edinburgh</td>
              <td>61</td>
              <td>2011/04/25</td>
              <td>$3,120</td>
            </tr>
            <tr>
              <td>Garrett Winters</td>
              <td></td>
              <td>Director</td>
              <td>Edinburgh</td>
              <td>63</td>
              <td>2011/07/25</td>
              <td>$5,300</td>
            </tr>
    
    
          </tbody>
        </table>
      </div>
    </body>
    
    </html>