Skip to content
Open
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
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@ The **limitbox** form field type provides a list of item count limits.
- **limits** (optional) a comma-separated string containing limits, i.e. 5,25,50,150.
- **append** (optional) a comma-separated string containing limits to be appended to the default limits.
- **remove** (optional) a comma-separated string containing limits to be removed from the default limits.
- **showall** (optional) controls whether an "All" option is displayed in the dropdown list.
- **true**: shows the "All" option
- **false**: hides the "All" option (default)

The default limits are 5, 10, 15, 20, 25, 30, 50, 100, 200, 500.

Expand All @@ -30,9 +33,11 @@ Implemented by: libraries/src/Form/Field/LimitboxField.php
label="JGLOBAL_LIST_LIMIT"
class="input-mini"
default="10"
showall="true"
onchange="this.form.submit();"
/>
</fields>

```

## See also
Expand Down