Skip to content Skip to sidebar Skip to footer

How To Use Fine Uploader Js Framework With Ajax

I want to use fineuploader JS library to use with upload multiple files. Now as per my requirement, user can select multiple files then those selected files should not be uploaded

Solution 1:

You can get a list of all submitted files using the getUploads() API method, and you can get the underlying Blob/File object for each submitted entry using the getFile() API method.

But keep in mind the status won't change, nor will anything else as far as fine uploader is concerned if you upload the files yourself. You'll have a UI filled with submitted files that never changes. Note that the only way to reflect the status of these files in the UI is to have fine uploader upload them.

Post a Comment for "How To Use Fine Uploader Js Framework With Ajax"