The Data Grid template

Description

This template is intended for the display of data tables.

Preview

Code

Defined CSS classes

nv-datagrid

Sample code

<table class="nv-datagrid">
  <thead>
    <tr>
      <th>col 0</th>
      <th>col 1</th>
      <th>column 2</th>
    </tr>
  </thead>
 
  <tfoot>
    <tr>
      <td>footer 1</td>
      <td>footer 2</td>
      <td>footer 3</td>
    </tr>
  </tfoot>
 
  <tbody>
    <tr>
      <td>1</td>
      <td>line 1</td>
      <td>line number 1</td>
    </tr>
 
    <tr>
      <td>2</td>
      <td>line 2</td>
      <td>line number 2</td>
    </tr>
 
    <tr>
      <td>3</td>
      <td>col 1</td>
      <td>line number 3</td>
    </tr>
  </tbody>
</table>

Sample widget