Document multiple selection option for Select ingredient#276
Open
antwertinger wants to merge 2 commits intoAlchemyCMS:mainfrom
Open
Document multiple selection option for Select ingredient#276antwertinger wants to merge 2 commits intoAlchemyCMS:mainfrom
antwertinger wants to merge 2 commits intoAlchemyCMS:mainfrom
Conversation
added 2 commits
November 6, 2025 11:49
Add documentation for the new multiple: true setting that allows users to select multiple values from a Select ingredient.
tvdeyen
reviewed
Mar 8, 2026
|
|
||
| * **default** `String` (optional) | ||
|
|
||
| A default value to prefill newly created elements. The value must be one of the values from `select_values`. |
Member
There was a problem hiding this comment.
The value must be one of the values from
select_values.
No, the value must not be one of the select_values. It can be any value.
tvdeyen
reviewed
Mar 8, 2026
|
|
||
| A list of values your users can select from. Use [a two dimensional array](https://guides.rubyonrails.org/form_helpers.html#the-select-and-option-tags) for having value and text pairs. | ||
|
|
||
| * **multiple** `Boolean` (default: false) |
Member
There was a problem hiding this comment.
We need a note about the minor version this was introduced. 8.1 in this case
Member
|
@antwertinger also integrated in 8a59d18 now. Adjust if necessary |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Adds documentation for the new
multiplesetting on the Select ingredient that enables multiple value selection.Changes
multiple: truesetting documentation with default valueStringby default and asArraywhen multiple is enabledExample Usage