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

Commit

Permalink
Fix "itemsLimitPerTable" / "itemsLimitSingleTable" ranges and clarify…
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] and gcrico authored Nov 17, 2024
1 parent 95fe155 commit fdd4218
Showing 1 changed file with 10 additions and 2 deletions.
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

0 comments on commit fdd4218

Please sign in to comment.