Welcome to the React feedback portal. We’re happy you’re here! If you have feedback on how to improve the React, we’d love to hear it!

  • Check out the features or bugs others have reported and vote on your favorites. Feedback will be prioritized based on popularity.
  • If you have feedback that’s not listed yet, submit your own.

Thanks for joining our community and helping improve Syncfusion products!

1
Vote

Hi SyncFusion team!

Recently we upgraded, and the UploaderComponent stopped working, the request is sending but it does not contain the pdf file.


<UploaderComponent

                    ref={(uploader) => (this.uploader = uploader)}

                    autoUpload={false}

                    asyncSettings={{ saveUrl: 'api/Worklist/Save' }}

                    uploading={(args) => {

                        this.totalFilesCount = this.uploader.getFilesData().length;

                        this.showSpinner();

                    }}

                    success={this.success.bind(this)}

                    allowedExtensions={'.pdf'}

                    minFileSize={0}

                    maxFileSize={26214400}

                    sequentialUpload={true}

                    buttons={this.state.buttons}

                    multiple={true}

                    clearing={this.onClear.bind(this)}

                />