githubEdit

dropzone

dropzone Allows you to easily add a drag and drop file upload component to any form. Files are posted to any upload service such as file.ioarrow-up-right and uploadcarearrow-up-right. The data model is passed back all relevant meta information.

File.io

The default configuration uses file.io as ephemeral storage. Using additional options you can adjust the length of time a file lives for (default is 2 weeks). Typically upon form submission, your FileMaker hook script would insert the data from the storage location into a container etc in your database.

AWS S3

Files can be uploaded to an AWS S3 bucket. You will need to first provision the bucket. See the following page for complete setup instructions

dropzone to S3chevron-right

Base64

Key
Value(s)
Type
Description

type

dropzone

string

model

Array

Array of uploaded file metadata. Does not have to be predefined.

useCustomSlot

()

boolean

If true, then the HTML in the html key will be inserted into the target drop area, defaults false

includeB64

boolean

If true, base64 encoded data is returned in the response, defaults false.

options

object

Object of additional options. These will override defaults. and are passed directly into dropzone.js

html

string

Optional custom HTML rendered inside the drop area when useCustomSlot is true

awss3 / s3

object

Optional AWS S3 configuration passed through to the underlying vue-dropzone S3 integration

s3UploadSuccess

function / _actions

Optional callback for successful S3 uploads

s3UploadError

function / _actions

Optional callback for S3 upload errors

Minimal Usage Example

"Dropzone Element"

Additional Options

You can totally customize the dropzone component and control things like file size limits and number of files uploaded.

BetterForms also exposes a few integration-specific additions on top of the standard Dropzone options:

  • awss3 or s3 to enable the S3 upload mode

  • html plus useCustomSlot to replace the default dropzone content

  • s3UploadSuccess and s3UploadError hooks for S3-specific upload events

Reference

vue-dropzone optionsarrow-up-right http://www.dropzonejs.com/#configurationarrow-up-right

Example Data model

Reference

vue-dropzone optionsarrow-up-right

http://www.dropzonejs.com/#configurationarrow-up-right

Last updated

Was this helpful?