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 has been archived by the owner on Sep 1, 2022. It is now read-only.
the result is (in text): datarows='[["a",8,5],["b",2,6],["c",5,7]]' columns='["Index","Series 1","Series 2"]'> which is not what I would have expected.
Its much the same even if I switch it to urth-viz-table.
I the chrome dev console I can see these two errors:
http://localhost:8888/static/does/not/exist.js?v=20161106093541 Failed to load resource: the server responded with a status of 404 (Not Found)
http://localhost:8888/nbextensions/widgets/widgets/js/widget.js?v=20161106093541 Failed to load resource: the server responded with a status of 404 (Not Found)
I would think that there is maybe some problem with ipywidgets getting enabled. When I switch on debug logging on jupyter I can see it is loading config from /home/adam/python3/venv/etc/jupyter/jupyter_notebook_config.json which looks like:
I also see this warning in the logs and I'm not sure if it is relevent:
/home/adam/python3/venv/lib/python3.5/site-packages/urth/widgets/__init__.py:7: UserWarning: The `urth` package name is deprecated. Will be removed in version 0.7.0. Use 'declarativewidgets' instead.
warn("The `urth` package name is deprecated. Will be removed in version 0.7.0. "
I am aware of the other issues such as 297 but they but issue seems slightly different.
The text was updated successfully, but these errors were encountered:
Looks like a syntax error. datarows and columns should be attributes on urth-viz-bar You've got a > closing the tag with those attributes as inner text.
Ok my bad but when I remove it it is just blank output still with the errors.
*edit: I have tried this on another computer and still have the problem. (essentially the same setup).
I'm having trouble getting declarative widgets to work. I'm running in a python3 virtual env on Ubuntu.
I have also run
jupyter nbextension enable --py --sys-prefix widgetsnbextension
andjupyter declarativewidgets quick-setup --sys-prefix
.I have then setup a notebook and run:
and
works. As in the slider shows up. However if I run
the result is (in text):
datarows='[["a",8,5],["b",2,6],["c",5,7]]' columns='["Index","Series 1","Series 2"]'>
which is not what I would have expected.Its much the same even if I switch it to urth-viz-table.
I the chrome dev console I can see these two errors:
I would think that there is maybe some problem with ipywidgets getting enabled. When I switch on debug logging on jupyter I can see it is loading config from
/home/adam/python3/venv/etc/jupyter/jupyter_notebook_config.json
which looks like:I also see this warning in the logs and I'm not sure if it is relevent:
I am aware of the other issues such as 297 but they but issue seems slightly different.
The text was updated successfully, but these errors were encountered: