The Upload Button now accepts new Image, Document, Video, and Audio file types.
Full list of supported types (new in bold):
Image
BMP, GIF, HEIC, HEIF, JFIF, JPE, JPEG, JPG, PNG, TIF, TIFF, WEBP
Document
AI, CDR, CSV, DOC, DOCX, DOT, DOTX, DWG, EPS, EPUB, FLA, GPX, INDD, IPYNB, KEY, KML, KMZ, MOBI, NUMBERS, ODG, ODP, ODS, ODT, OTP, OTS, OTT, OXPS, PAGES, PDF, PKG, POT, POTX, PPS, PPSX, PPT, PPTX, PSD, PUB, RTF, TXT, VCF, XCF, XLS, XLSX, XLT, XLTX, XPS
Video
AVI, DIVX, FLV, MKV, MOV, MPE, MPEG, MPG, MP4, MXF, M2TS, M4V, OGV, VOB, WEBM, WMV, XVID, 3GP
Audio
AAC, AIF, AIFF, FLAC, MP3, M4A, WAV, WMA
We added many of the new types due to requests you made on the Corvid forum.
If you would like to request support for additional types, please mention them in the comment section below.
By the way, we are well aware of the need to accept Archive file types (ZIP, RAR etc.) with the Upload Button, and are working on it.
Happy Uploading!
ZIP & RAR will be a huge help. Thank you!
Eyal, any chance of getting kind of a progress or % uploaded value to display to the user while files are being uploaded via the upload button. For some bigger files, user has to just stare at the screen, would add to the user experience to have this function.
Perhaps something like: each time the % uploaded crosses a 10% mark it will communicate with the page.
$w.onReady(function () { $w("#uploadButton1").onMessage( (event) => { let percentageUploaded = event.value; }); });
So each file upload would throw a total of 10 events, one each time the upload percentage crosses 10% mark.
Because it think it will be too much (and unnecessary) for you guys to build to communicate the actual percentage uploaded in real time. I don't think real time is needed but at-least something to show the progress of the upload.