Actions

open-media-picker

3min

This action lets you immediately open the media picker, enabling you to capture images and videos or select media files, then output the selected files.

Configuration options

Core structure



title

Provide a short title to display on the action button. You can use text, an expression or a datasource to set the title.

mediaType

By default the value is set to image. The following options are available for selection:

  1. any is for files of any extension such as pdf, jpeg, png, mpeg, txt, or docx. Set to any allows you to take a picture, record a video, select an image or video from the library, or select a document. Using mediaType: any is recommended when uploading multiple media files as it caters for any file type.
  2. image - used to take a picture or select from the image library.
  3. imageAndVideo - take a picture, record a video or select an image or video from the library.
  4. video - record a video or upload one from the library.

Other options



icon

Specify the icon to display on the action button. The icon only applies to swipeable, secondary, and header actions. Icon setups are not supported on primary actions.

imageCropping

You can set any of the following with imageCropping : isEnabled - allows you to crop an image. height - maximum allowed is 5000px. width- maximum allowed is 5000px. isFreeStyleCropEnabled - when set to true it supports custom cropping to change the size or aspect ratio of an image.

imageQuality

Image quality after compression (from 0 to 100, where 100 is the best quality). On iOS, values larger than 80 don't produce a noticeable quality increase in most images, while a value of 80 will reduce the file size by about half or less compared to a value of 100. Default: 100 (Android)/ 80 (iOS).

isHidden

When set to true the action button is hidden.

isMultiple

Set to true allows for multiple files to be added or shown. Set to false allows for a single file.

maximumFileSize

maximumFileSize =6 * 1024 * 1024 by default. Set the value to none if no size evaluations must be performed. File size format is in bytes. Applies to images and videos.

style

Add styling to the action button. More than one can be set to true, evaluation is based on priority.

  • isDanger - Change the button style to error
  • isDisabled - Disables the button preventing it from being tapped.
  • isPrimary - Change style of the button to primary. Default is primary.

Outputs

Key

Notes

=@ctx.actions.instanceId.outputs.

newItems

string[] Used for newly added items that were successfully uploaded.

=@ctx.actions.instanceId.outputs.

invalidItems

string[] Used for options that are invalid or failed to upload successfully.

Examples and code snippets 

In this example, the button opens the media-picker. The configuration is set to take a picture or choose from library. The image is saved to the local database.

Action open media-picker
Action open media-picker

action-open-media-picker.jigx




Updated 04 Mar 2025
Doc contributor
Did this page help you?