Installation
Requirements
- TYPO3 13 LTS or 14
- PHP 8.2 or newer
Install with Composer
Require the package
composer require hrr/t3-datatable
Copied!
Packagist: https://packagist.org/packages/hrr/t3-datatable
For local path repositories (monorepo):
composer require hrr/t3-datatable:@dev
Copied!
Install from TER
You can also install the extension from the TYPO3 Extension Repository using the Extension Manager, or download it and place it in your project.
Activate extension
- Open the TYPO3 backend.
- Go to Admin Tools > Extensions.
- Activate EXT:t3_datatable.
Demo
After activation, 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.
Verify installation
After activation:
- AJAX route
t3datatable_datais registered. - JavaScript import map entry
@hrr/t3-datatable/datatable-backend.jsis available. - Demo module appears under Web > T3 DataTable (Content > T3 DataTable on TYPO3 14).
Run tests (optional)
From the package directory:
composer install
composer ci
Copied!