diff --git a/docs/general-concepts/forms-fields/standard-fields/limitbox.md b/docs/general-concepts/forms-fields/standard-fields/limitbox.md index a4deb44b..36166487 100644 --- a/docs/general-concepts/forms-fields/standard-fields/limitbox.md +++ b/docs/general-concepts/forms-fields/standard-fields/limitbox.md @@ -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. @@ -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();" /> + ``` ## See also