Disable records per page select
Is there a way (without css) to disable the records per page dropdown for a specific table?
2 Replies
why no css?
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 [];
}