Niko Föhr

Results 171 comments of Niko Föhr
trafficstars

Which version of dash-uploader are you using?

Hi, You could try setting the `max_total_size` argument of the `Upload` component. From [dash_uploader/upload.py](https://github.com/np-8/dash-uploader/blob/dev/dash_uploader/upload.py#L95): ```python def Upload( id="dash-uploader", text="Drag and Drop Here to upload!", text_completed="Uploaded: ", text_disabled="The uploader is disabled.",...

@GitHunter0 I'm not actively working on this project and not planning to use time on this in the near future. This project is looking for maintainers so if anyone is...

@mapix what do you think, are you able to use some time for a new release? or others on this thread?

@mapix I appreciate that you would like to volunteer here and help. What I meant by "being able to use some time for a new release" was the ability to...

Which version of dash-uploader you are using?

Yeah the du.UploadStatus was introduced in 0.7.0a1, so that probably explains your error :)

Hi @mapix , Glad to see this one getting a fix. Tests would be nice though; what could be done to make testing easier on your local machine? I don't...

Which version of dash-uploader you are using? Have you tried using the [`du.callback`](https://github.com/np-8/dash-uploader/blob/dev/docs/dash-uploader.md#3-callbacks) instead of the `app.callback`? If you are using version >= 0.7.0, then see [this note](https://github.com/np-8/dash-uploader/wiki/Migration-Guide#callbacks).

Could you please try: ```python @du.callback( output=[Output('callback-output', 'children'), Output("example-graph2", "figure"), Output("example-graph3", "figure")], id="dash-uploader", ) def callback_on_completion(status: du.UploadStatus): # your code here ``` in place of ```python @app.callback([Output('callback-output', 'children'), Output("example-graph2", "figure"),...