You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jul 19, 2025. It is now read-only.
| Underlying technology |[flow.js](https://github.com/flowjs/flow.js/)| HTML5 API |
55
-
| File size | Unlimited | max ~150-200Mb ([link](https://community.plotly.com/t/dash-upload-component-decoding-large-files/8033/11)) |
55
+
| File size | Unlimited | max ~150-200MB ([link](https://community.plotly.com/t/dash-upload-component-decoding-large-files/8033/11)) |
56
56
| Uploads to | Hard disk (server side) | First to browser memory (user side) Then, to server using callbacks. |
57
57
| Data type | Uploaded as file; no need to parse at server side. | Uploaded as byte64 encoded string -> Needs parsing |
58
58
| See upload progress? | Progressbar out of the box | No upload indicators out of the box. Generic loading indicator possible. [Progressbar not possible](https://community.plotly.com/t/upload-after-confirmation-and-progress-bar/7172). |
alert('Total file size too large ('+bytest_to_mb(sumOfSizes).toFixed(1)+' Mb) ! Maximum total filesize is: '+bytest_to_mb(this.props.maxTotalSize).toFixed(1)+' Mb')
174
+
alert('Total file size too large ('+bytest_to_mb(sumOfSizes).toFixed(1)+' MB) ! Maximum total filesize is: '+bytest_to_mb(this.props.maxTotalSize).toFixed(1)+' MB')
alert('1 file could not be uploaded, as the file is too large! Maximum allowed file size is '+bytest_to_mb(this.props.maxFileSize).toFixed(1)+'Mb')
330
+
alert('1 file could not be uploaded, as the file is too large! Maximum allowed file size is '+bytest_to_mb(this.props.maxFileSize).toFixed(1)+'MB')
331
331
}elseif(n_too_large_files>1){
332
-
alert(n_too_large_files.toString()+' files could not be uploaded, as the file is too large! Maximum allowed file size is '+bytest_to_mb(this.props.maxFileSize).toFixed(1)+'Mb')
332
+
alert(n_too_large_files.toString()+' files could not be uploaded, as the file is too large! Maximum allowed file size is '+bytest_to_mb(this.props.maxFileSize).toFixed(1)+'MB')
0 commit comments