Docs
- Getting Started
- SME Uploader
- Companion
- List of Plugins
- Common Plugin Options
- Custom Stores
- Locale Packs
UI Elements
Sources
- Drag & Drop
- File Input
- Webcam
- Provider Plugins
- ⓒ Dropbox
- ⓒ Google Drive
- ⓒ OneDrive
- ⓒ Zoom
- ⓒ Import From URL
Destinations
File Processing
- Image Editor
- Robodog Introduction
- Robodog File Picker
- Robodog Form
- Robodog Upload
- Robodog Dashboard
- Transloadit
Miscellaneous
Contributing
Robodog: Dashboard API
Add the Dashboard UI to your page, all wired up and ready to go! This is a basic wrapper around the Transloadit and Dashboard plugins. Unlike the File Picker API, this Dashboard is embedded directly into the page. Users can upload multiple files after another.
<div id="dashboard"></div> <script> Robodog.dashboard('#dashboard', { params: { auth: { key: '' }, template_id: '' } }) </script> |
This API can still be used as a modal, too, by specifying inline: false
:
Robodog.dashboard(selector, { inline: false }); |
The Robodog.dashboard()
function returns an SME Uploader instance, which you can use to listen for any SME Uploader events.
const uploader = Robodog.dashboard(selector, { ...options }) .on('transloadit:result', (result) => { console.log(result); }); |
Transloadit
All the options to the Transloadit plugin are supported.
Restrictions
Set rules and conditions to limit the type and/or number of files that can be selected. Restrictions are configured by the restrictions
option.
restrictions.maxFileSize
Maximum file size in bytes for each individual file.
restrictions.minFileSize
Minimum file size in bytes for each individual file.
restrictions.maxNumberOfFiles
The total number of files that can be selected. If this is larger than 1, the multiple
attribute will be added to <input type="file">
fields.
restrictions.minNumberOfFiles
The minimum number of files that must be selected before the upload. The upload will fail and the form will not be submitted if fewer files were selected.
restrictions.allowedFileTypes
Array of mime type wildcards image/*
, exact mime types image/jpeg
, or file extensions .jpg
: ['image/*', '.jpg', '.jpeg', '.png', '.gif']
.
If provided, the <input accept>
attribute will be added to <input type="file">
fields, so only acceptable files can be selected in the system file dialog.