Usage
Demo backend module
After installation, open:
Web > T3 DataTable
to see a working server-side grid using the pages table.
Note
On TYPO3 14 the module appears under Content > T3 DataTable.
This module lists pages via the demo_pages grid identifier. It
demonstrates:
- Module registration in
Configuration/Backend/ Modules. php - Grid class
HRRT3DatatableDemo Pages Grid - 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
- Install and activate the extension.
- Open the demo module to confirm AJAX + rendering works.
- Implement your own
Gridin your extension.Interface - Add the grid to your backend module template.