Neha
Neha

Reputation: 2261

How to add download image or Pdf/any doc in filepond?

How to add download image or Pdf/any doc in filepond. I am using Filepond with vue framework. i also need a big preview of image when i click on image thumbnail how to achieve this with filepond?

<file-pond
            ref="pond"
            class-name="my-pond"
            label-idle="Drop files here..."
            :allow-multiple="allowMultiple"
            accepted-file-types="image/jpeg, image/png, application/pdf,"
            :files="myFiles"
            v-on:init="handleFilePondInit"
            @addfile="onaddfile"
            @removefile="onRemoveFile"
        >
        </file-pond>

Upvotes: 3

Views: 3623

Answers (1)

Rik
Rik

Reputation: 3596

This third party plugin adds a download button https://github.com/nielsboogaard/filepond-plugin-get-file

You can use @activatefile to run logic when the user clicks a file item. https://pqina.nl/filepond/docs/patterns/api/filepond-instance/#callbacks

Upvotes: 4

Related Questions