etpinard

Results 123 comments of etpinard

@tanmaykm thanks very much for this PR! I got the tests to pass again with https://github.com/plotly/Dash.jl/pull/234, merging the latest `dev` into your branch and pushing again should give you a...

There's no `app_root_path` kwarg for the python `Dash` class Ref: https://github.com/plotly/dash/blob/f70b3db6312c084206054cd903ee644359009486/dash/dash.py#L184-L357 We try as much as we can to have the Julia `dash` constructor mimic the python `Dash` class. So,...

Strange Does ```jl using Dash help?> html_a ``` work for you?

Ok. Can you share the output of `Pkg.status()` ? Related issue: https://github.com/plotly/Dash.jl/issues/168

Thanks for posting! Updating the JS deps (as in https://github.com/plotly/Dash.jl/pull/208) will get us most of the way there. Using the https://github.com/plotly/Dash.jl/pull/208 branch, I got your Julia snippet to run ![image](https://github.com/plotly/Dash.jl/assets/6675409/5bb46b16-e039-40a7-ba9c-fcc0f792b143)...

Hi @00krishna Multi-page apps were added in the [dash python version v2.5.0](https://github.com/plotly/dash/blob/dev/CHANGELOG.md#250---2022-06-07) and haven't made their way to Dash.jl. If you have specific questions on https://gitlab.com/etpinard/dash.jl-multi-page-app-example, please don't hesitate to...

thanks for the shout-out @HackYardo :smile:

@harshjv Your update object should be: ``` js var update = { x: [['2001-06-15 11:10', '2001-06-15 11:20']], y: [['23', '100.3']] }; ``` to update the `x` and `y` of your...

@harshjv no problem. I'd rename your issue to reflect the discussion about possibly making `restyle` throw errors.

then https://github.com/cstjean/QuickTypes.jl/pull/27/commits/b459c6a0279b2d66b02f0fba3e32b4e960c20e92 leads to ![image](https://github.com/cstjean/QuickTypes.jl/assets/6675409/2ffdc958-7abf-4f0b-87c7-afc3f9187981) The culprit seems to be in https://github.com/cstjean/QuickTypes.jl/commit/2ed4967e966e7249043795423286c0ddc48730c4. Reverting it makes the `test/revise.jl` suite pass.