-
Notifications
You must be signed in to change notification settings - Fork 63
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Preload images on multiple upload #4
Comments
Did i missed something? |
My bad, this should be in the v-uploader repo. Don't know how that happened. Can you move it or should I repost there? |
There have one example in home page, the title is example: <v-uploader preview-img="http://xxx.com/a.jpg" ></v-uploader>
|
I found that option but it doesn't do what I'm looking for. I'm using this uploader to add multiple images to a model. That may be a new record but it can also be an existing record that is being edited. In the case of editing, that record may already have files attached. Instead of having 2 places where files can be manipulated, I'd like to load these already existing files into the uploader so users can remove them from there and attach a changed set of files to the record. |
Unfortunately, the My suggest is build image thumbnail list yourself, and take uploaded images on the server show in that. Setup a button to delete the selected image(s), when plugin uploaded image complete, put the new image info into list. This will be more complicated, but it can realize what your want. |
Ok, thanks. I'll cook something up :) |
Is there a way to show images that are already on the server in the multiple upload? For example, when using the uploader for an existing record that already has files attached.
In other words, is there an event listener or method that can be called to fill the uploadedFiles array?
The text was updated successfully, but these errors were encountered: