Add limitation about editable behavior without store value in Combo Box #10027
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.
Description
This PR updates the Combo Box widget documentation to include a new limitation regarding the use of the widget without a store value attribute.
Specifically, when a Combo Box is placed inside a data view and no store value attribute is configured, the Editability setting of the data view (set to Never or Conditionally) will not be applied to the Combo Box. This occurs because the widget has no target attribute to evaluate whether it should be editable.
A workaround is documented, recommending that developers manually configure the editability setting for each Combo Box individually in such cases.
Changes
Added a new section under Limitations in the Combo Box widget docs:
Documented the issue with missing store value attributes and editability.
Provided a clear workaround.
Added a note that this is a known limitation.