I don't see an option in the plupload API docs on restricting the number of files uploaded, to any number, even 1.
Doc fail? or Feature fail? If it doesn't exist I'll be working on making that happen if anyone needs it..
|
I don't see an option in the plupload API docs on restricting the number of files uploaded, to any number, even 1. Doc fail? or Feature fail? If it doesn't exist I'll be working on making that happen if anyone needs it.. |
|||
|
|
It's a feature fail. I made a wrapper around the jQuery API and this is what I did to make it work for me. My code does some other business logic, but it should give you enough to set started. Basically, bind to the
Edit: I actually had to do two different ways for this. The above will only allow a person to upload a certain number of files (and generate an error otherwise). This snippet works in a similar way - but will remove existing files and only upload the most recent:
|
|||||
|
|
Based on Jonathon Bolster's second answer, I wrote this simpler snippet to restrict upload to the last selected file:
|
|||||||||
|
|
You can use this |
|||||||||||||||
|
|
Allow only one file to be uploaded:
Allow one file to be selected at once:
Allow one file to upload at once:
|
|||
|
|
|
Try this. It works fine for me.
. . . resto Idea is to test num files in current uploader object. If length is greater than 1, then just use method
Best regards! |
||||
|
|
|
Remove unnecessary files directly before uploading:
|
|||
|
|