New Feature: Upload Button Accepts New File Types

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.