Usage 

Demo backend module 

After installation, open:

Web > T3 DataTable

to see a working server-side grid using the pages table.

This module lists pages via the demo_pages grid identifier. It demonstrates:

  • Module registration in Configuration/Backend/Modules.php
  • Grid class HRRT3DatatableDemoPagesGrid
  • Fluid template Resources/Private/Templates/Backend/Demo/Index.html
  • CSP-safe JavaScript auto-initialisation via data-* attributes

AJAX data endpoint 

Any registered grid can be queried directly (for debugging):

POST /typo3/ajax/t3datatable/data?grid=demo_pages
Copied!

Parameters follow the DataTables server-side protocol.

Typical workflow for integrators 

  1. Install and activate the extension.
  2. Open the demo module to confirm AJAX + rendering works.
  3. Implement your own GridInterface in your extension.
  4. Add the grid to your backend module template.