<!DOCTYPE html>
<html>
  <head>
    <script src="https://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" />
     <link href="https://cdn.datatables.net/buttons/1.1.2/css/buttons.dataTables.min.css" rel="stylesheet" type="text/css" />
    
    <script src="https://nightly.datatables.net/js/jquery.dataTables.js"></script>
    <script src="//cdn.datatables.net/buttons/1.1.2/js/buttons.colVis.min.js "></script>
    <script src="https://cdn.datatables.net/buttons/1.1.2/js/dataTables.buttons.min.js"></script>
 
    <meta charset=utf-8 />
    <title>DataTables - JS Bin</title>
  </head>
  <body>
    <div class="container">
      <div class="groupToggle">
        
      <table id="example" class="display nowrap" width="100%">
        <thead>
          <tr>
            <th class='Group 1'>Name</th>
            <th class='Group 1'>Position</th>
            <th class='Group 1'>Office</th>
            <th class='Group2'>Age</th>
            <th class='Group2'>Start date</th>
            <th class='Group2'>Salary</th>
          </tr>
        </thead>
        <tbody>
          <tr>
            <td>Brenden Wagner</td>
            <td>Software Engineer</td>
            <td>San Francisco</td>
            <td>18</td>
            <td>2011/06/07</td>
            <td>$3,750</td>
          </tr>
           <tr>
            <td>Brenden Wagner</td>
            <td>Software Engineer</td>
            <td>San Francisco</td>
            <td>18</td>
            <td>2011/06/07</td>
            <td>$3,750</td>
          </tr>
        </tbody>
      </table>
    </div>
  </body>
</html>
 
body {
  font: 90%/1.45em "Helvetica Neue", HelveticaNeue, Verdana, Arial, Helvetica, sans-serif;
  margin: 0;
  padding: 0;
  color: #333;
  background-color: #fff;
}
 
$(document).ready( function () {
  
  var arrayGroup = ['Group 1', ' Group2']; //Info: In my "real" project i get the group names from Django
  
  var table = $('#example').DataTable();
  $.each(arrayGroup, function (index,value) {
    
    var groupClassSelect = '.'+arrayGroup[index].trim().replace(/ /g,".");
    new $.fn.dataTable.Buttons( table, {
      buttons: [
        {
          
          extend: 'columnToggle',
          text: arrayGroup[index],
          columns: groupClassSelect
        },
      ]
    });
  });
  table.buttons(0, null).container().prependTo(table.table().container() );
} );
Output 300px

This bin was created anonymously and its free preview time has expired. Get a free unrestricted account

Dismiss x
public
Bin info
anonymouspro
0viewers