[WTF-2679] Update docs for removed deprecation on file/image properties#11328
Open
mlaponder wants to merge 2 commits into
Open
[WTF-2679] Update docs for removed deprecation on file/image properties#11328mlaponder wants to merge 2 commits into
mlaponder wants to merge 2 commits into
Conversation
82a6cff to
081720f
Compare
alihcsumer
approved these changes
Jun 10, 2026
Contributor
Author
|
@ConnorLand reviewed by team, ready for you |
weirdwater
reviewed
Jul 3, 2026
|
|
||
| This optional attribute applies only to [file](#file) and [image](#image) properties and determines whether users can upload and edit files. When set to the default value of `false`, properties use the legacy read-only behavior. Setting it to `true` unlocks upload and edit capabilities by passing `EditableFileValue<FileValue>` and `EditableImageValue<ImageValue>` types, as props to a client component. | ||
| {{% alert color="info" %}} | ||
| Introduced in Mendix 11.8. Support for native widgets was introduced in Mendix 11.11. |
Contributor
There was a problem hiding this comment.
Can you link to the release note pages?
[11.8](/releasenotes/studio-pro/11.8/)[11.11](/releasenotes/studio-pro/11.11/)
weirdwater
reviewed
Jul 3, 2026
| The user can use the optional attribute [`allowUpload`](#allow-upload) with default value `false` to use the legacy [`Dynamic<FileValue>`](/apidocs-mxsdk/apidocs/pluggable-widgets-client-apis/#filevalue) prop. Beware of behavioral differences based on the `allowUpload` attribute. | ||
|
|
||
| {{% alert color="warning" %}} Legacy DynamicValue types for file and image properties are deprecated and will be removed at Mendix 12. Use allowUpload="true" to migrate to the new editable types before Mendix 12. {{% /alert %}} | ||
| The user can use the optional attribute [`allowUpload`](#allow-upload) with default value `false` to use the [`Dynamic<FileValue>`](/apidocs-mxsdk/apidocs/pluggable-widgets-client-apis/#filevalue) prop. Beware of behavioral differences based on the `allowUpload` attribute. |
Contributor
There was a problem hiding this comment.
Do we want to add the introduced infobox here (and for image) as well?
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.
We decided continue to support file and image properties without allowUpload to easy the upgrading to Mendix 11. This PR updates the docs accordingly.