File Upload Component

I read the documentation and couldn’t see what “Process Upload in Logic” and “Capture” is supposed to do. Does anyone else know?

Thank you in advanced!

Hello @Bob_Leung

Information about “Capture” attribute:
https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/capture

Process upload in Logic solves problems like:

  1. Using files from “file upload btn” without uploading on the data base.
  2. Set data to “img component” from ArrayBuffer or utf-8
    We can to get files without uploading on database. You should get files in “before uploading” handler and throw an error there. But it is a bad way

Regards

Thanks for the quick response.