DataTable Widget

Wrapper widget for the jquery datatables plugin. You can create a whole data table with sort, search, pagination and other useful utilities.

Official DataTables Website: http://www.datatables.net

Options

Language | data-datatable-language | Object | Optional

Provide the default language for the data table. If no language is provided, the language defaults to german. Click here to see how the language object should look like.

Example

<table data-gx-widget="datatable">
  <thead>
    <tr>
      <th>Column 1</th>
      <th>Column 2</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td>Cell 1</td>
      <td>Cell 2</td>
    </tr>
  </tbody>
</table>

Place the ".disable-sort" class to elements that shouldn't be sorted.

Source:

Requires

  • module:jQuery-DataTables-Plugin