Skip to content

Data Table

TIP

Example of a Data Table.

Classes: .c-table.dataTable Initialize like this: $('#table_id').dataTable();

html
<table id="table_id" class="c-table dataTable no-footer">
  <thead>
    <tr>
      <th>Column 1</th>
      <th>Column 2</th>
      <th>Column 3</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td>Row 1 Data 1</td>
      <td>Row 1 Data 2</td>
      <td>Row 1 Data 3</td>
    </tr>
    <tr>
      <td>Row 2 Data 1</td>
      <td>Row 2 Data 2</td>
      <td>Row 2 Data 3</td>
    </tr>
  </tbody>
</table>