Skip to content
This repository has been archived by the owner on Nov 19, 2024. It is now read-only.

Fix "itemsLimitPerTable" / "itemsLimitSingleTable" ranges and clarify… #565

Merged
merged 1 commit into from
Nov 17, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 10 additions & 2 deletions Documentation/PageTsconfig/Mod/WebList.rst
Original file line number Diff line number Diff line change
Expand Up @@ -369,9 +369,13 @@ itemsLimitPerTable
:Default: 20
`
Set the default maximum number of items to show per table.
The number must be between `5` and `10000`. If below or above this range,
The number must be between `0` and `10000`. If below or above this range,
the nearest valid number will be used.

If a value is defined in the `$TCA[<table>]['interface']['maxDBListItems']`
of the table, it will override this TSconfig option.
For example, the `maxDBListItems` for the `pages` table is `30` by default.

.. _pageTsConfigWebList-itemsLimitPerTable-example:

Example: Limit items per table in overview to 10
Expand All @@ -398,9 +402,13 @@ itemsLimitSingleTable
:Default: 100

Set the default maximum number of items to show in single table view.
The number must be between `5` and `10000`. If below or above this range,
The number must be between `0` and `10000`. If below or above this range,
the nearest valid number will be used.

If a value is defined in the `$TCA[<table>]['interface']['maxSingleDBListItems']`
of the table, it will override this TSconfig option.
For example, the `maxSingleDBListItems` for the `pages` table is `50` by default.

.. _pageTsConfigWebList-itemsLimitSingleTable-example:

Example: Limit items in single table view to 10
Expand Down
Loading