Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

widgets.jslink is broken #1612

Closed
blois opened this issue Sep 29, 2020 · 1 comment
Closed

widgets.jslink is broken #1612

blois opened this issue Sep 29, 2020 · 1 comment

Comments

@blois
Copy link
Contributor

blois commented Sep 29, 2020

From #60 (comment)

https://colab.research.google.com/gist/blois/cc980d5284982ef5eff72acbceef491f/copy-of-play_widget_test.ipynb

@blois
Copy link
Contributor Author

blois commented Oct 16, 2020

Note that the workaround here is to use widgets.link:

import ipywidgets as widgets

slider = widgets.IntSlider(min=1, max=100, step=1, continuous_update=True)
play = widgets.IntSlider(min=1, max=100, step=1, continuous_update=True)

widgets.link((play, 'value'), (slider, 'value'))
widgets.VBox([play, slider, out])

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants