- Lightweight on network data since it uses DataURL instead of Binary;
- Uses Service Actions to promote Loosely coupling;
- Allows the simultaneous upload of multiple files and of different file types;
- Accepts all file formats since it uses the standard HTML file input element;
- Allows the front end to specify the accepted file types;
- Keeps the page Lightweight since it automatically reads and stores the Files on a temporary table to clear them of as soon as possible;
- The temporary table is cleared daily (timer can be configured in service center);
- Files are deleted depending on how old they are (time span can be configured on the site property)
- Get files binary by their Identifier;
- Allows you to add more files to the temporary table without using the file upload widget, to give you comparability with other functionalities of your app;--Check out this component's version for Web Traditional Applications. It offers low impact on the View State!
Fixed an error that made it impossible for a user to reupload a file after having deleted it from the files list;
Cause: since the file was the same, the onChange event on the input didn't run.