We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
from jupyter_bokeh import BokehModel from bokeh.models import RadioGroup def update(event): print(event) LABELS = ["Option 1", "Option 2", "Option 3"] radio_group = RadioGroup(labels=LABELS, active=1) radio_group.on_click(update) BokehModel(radio_group)
After a click on "Option 3" it displays:
I would expect the event to be fired only once (in javascript it fires once).
The text was updated successfully, but these errors were encountered:
Does this happen only with BokehModel? If it happens in general, then this issue belongs in the main bokeh/bokeh repo.
BokehModel
bokeh/bokeh
Sorry, something went wrong.
from bokeh.plotting import figure, show, curdoc from bokeh.models import RadioGroup def my_radio_handler(new): print('Radio button option ' + str(new) + ' selected.') radio_group = RadioGroup(labels=["Option 1", "Option 2", "Option 3"], active=0) radio_group.on_click(my_radio_handler) curdoc().add_root(radio_group)
bokeh serve --show myapp.py
Single call.
It turned out that all widgets are affected by this. I've made a quickfix. Plz have a look, @mattpap, maybe you'll find a better solution.
Successfully merging a pull request may close this issue.
After a click on "Option 3" it displays:
I would expect the event to be fired only once (in javascript it fires once).
The text was updated successfully, but these errors were encountered: