F
Filament16mo ago
Veur

Disable records per page select

Is there a way (without css) to disable the records per page dropdown for a specific table?
2 Replies
Dan Harrin
Dan Harrin16mo ago
why no css?
Veur
Veur16mo ago
With css I would have to define this somewhere in the app.css for each table that I want to disable it for. It would be nice if you could do something like this in the component: protected function isTableRecordsPerPageSelectEnabled(): bool { return false; } or: protected function getTableRecordsPerPageSelectOptions(): array { return []; }