Skip to content
Open
Show file tree
Hide file tree
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 @@ -345,10 +345,6 @@ export interface EditableImageValue<T extends ImageValue> extends EditableFileVa

`EditableImageValue` provides upload capabilities to [`ImageValue`](#imagevalue), similarly to how [`EditableFileValue`](#editable-file-value) for [`FileValue`](#filevalue). Also it adds `setThumbnailSize` method which enables a component to request the Mendix Platform to return an image with specific dimensions. The Mendix Platform will take care of resizing the image while keeping the aspect ratio intact. When a thumbnail size is set, the `value` field of `EditableImageValue` will contain a resized image. When a thumbnail size is not set, the `value` field will contain an original image.

{{% alert color="warning" %}}
`EditableImageValue` does not support `NativeImage`.
{{% /alert %}}

### ModifiableValue {#modifiable-value}

`ModifiableValue` is used to represent values that can be changed by a pluggable widget client component. It is passed only to [association properties](/apidocs-mxsdk/apidocs/pluggable-widgets-property-types/#association), and is defined as follows:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,6 @@ This optional attribute applies only to [file](#file) and [image](#image) proper

Be aware of behavioral differences between the legacy read-only mode (`false`) and the new editable mode (`true`).

{{% alert color="info" %}} Editable types are not supported for Native as of now. {{% /alert %}}

#### Type (Required)

This defines a property's type. A `type` must be one of the following:
Expand Down Expand Up @@ -273,8 +271,6 @@ The user can use the optional attribute [`allowUpload`](#allow-upload) with defa

{{% 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 %}}

{{% alert color="info" %}} Editable types are not supported for Native as of now. {{% /alert %}}

#### XML Attributes

| Attribute | Required | Attribute Type | Description |
Expand Down Expand Up @@ -718,8 +714,6 @@ The user can use the optional attribute [`allowUpload`](#allow-upload) with defa

{{% 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 %}}

{{% alert color="info" %}} Editable types are not supported for Native as of now. {{% /alert %}}

#### XML Attributes

| Attribute | Required | Attribute Type | Description |
Expand Down