- 
          
- 
                Notifications
    You must be signed in to change notification settings 
- Fork 175
Plupload
        Martin Kluska edited this page Mar 23, 2018 
        ·
        4 revisions
      
    | Package | View | Javascript | handler class | 
|---|---|---|---|
| Github | no example | no example | ChunksInRequestUploadHandler | 
- Read the official docs
- Create the view as package requires
- Implement the basic plupload code (similar to dropuone or jquery upload)
Do you have an example code? Share with us
Using react-plupload
<Plupload
    id="file-upload"
    runtimes="html5,flash"
    multipart
    chunk_size="2mb"
    url={process.env.APP_API + '/upload'}
    flash_swf_url="/vendor/plupload-2.1.8//Moxie.swf"
    multi_selection={false}
    buttonSelect="Choose file"
    buttonUpload="Upload"
    autoUpload
    onFileUploaded={this.uploadFinished}
    onBeforeUpload={this.uploadStart}
/>