Questions tagged [filepond]

Javascript library for file uploads.

Javascript library for file uploads. Features include

  • Multiple File Sources
  • Multiple Input Formats
  • Async or Sync Uploading
  • Responsive
  • Accessable
  • Automatic Resizing

Resources

See: https://pqina.nl/filepond/

383 questions
0
votes
1 answer

uploading images with filepond in an express ejs project

I'm working on a project that uses express.js for backend and the ejs rendering template for frontend. I've uploaded some images using filepond and the images were converted to base64. However, while viewing the output on the browser, the images…
0
votes
1 answer

How can I add files to a list.but the list is always reset

I want to keep the incoming images in a list as they are loaded visually with Filepond. I'll email them later.but every time a file is called to load it creates the list again.the list is always reset. public class HomeController : Controller …
0
votes
1 answer

Filepond firebase revert

I'm trying to implement revert function but have an issue revert(uniqueFileId, load, error) { const desertRef = this.storage.ref().child(uniqueFileId); desertRef.delete().then(function () { const index =…
BoSkiv
  • 801
  • 8
  • 12
0
votes
1 answer

Filepond with multiple instances on one page: only the last instance uploads correctly

I am using Filepond, an otherwise amazing plugin, but when I try to place multiple instances on the same page, only the last instance uploads correctly. All the other ones display correctly, but only upload to the "tmp" folder: the files never…
Ben Viatte
  • 485
  • 1
  • 5
  • 16
0
votes
1 answer

Filepond custom server functions

The docs only mention an abort parameter in the return object for custom functions. Are there any other parameters or callbacks too? What if I want to do some task after the custom function such as process is done?
subodhk
  • 244
  • 3
  • 5
0
votes
1 answer

Filepond set plugin properties

Many Filepond plugins have properties available to modify their behaviour e.g. https://pqina.nl/filepond/docs/patterns/plugins/image-validate-size/#properties. How do I change them? The Filepond documentation shows how to register a plugin, but not…
PeterB
  • 2,212
  • 2
  • 21
  • 33
0
votes
1 answer

Filepond Image Uploader - setOptions on multiple instances

Using the Filepond plugin, I want to have separate setOptions for each instance of Filepond. The problem is that I don't know how to get setOptions to work for each instance and not universally. How do I set up the plugin to recognize each .filepond…
Kyle Underhill
  • 89
  • 15
  • 43
0
votes
0 answers

JWT header in Vue-FilePond

I'm looking for a way to update the settings (options) dynamically in Vue-FilePond. It is setup as following in my component: import store from '@/store' import vueFilePond from 'vue-filepond' export default { name: 'MyComponent', components:…
0
votes
1 answer

How to get the progress on file upload using filepond?

I have an API endpoint which works on PUT Request to update User info such as user avatar. This API is built on Django. In my Frontend, I'm using NUXT to upload the file using FilePond, I did the following: