-
Notifications
You must be signed in to change notification settings - Fork 47
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
Adding callbacks after BokehModel creation #153
Comments
Ok. Got it: def f(event):
print('hi')
b = bm.Button()
w = BokehModel(b)
b.on_click(f)
w.render_bundle = w._model_to_traits(b)
b._update_event_callbacks()
w |
Just noting that private APIs can change or be removed at any time so using those methods is purely at your own risk. We could consider crafting a supported, public API for this, but I think we'd need to understand the use-case better. The intended usage of |
This makes the following layout impossible to implement:
(or rather a horizontal version of this widget sequence) I realize that I could use the bokeh slider instead of the ipywidgets one. But not all ipywidget widgets have their counterparts in bokeh. |
We need to let |
Hi,
The event callbacks registered before a call to
BokehModel
work fine:Is it possible to register the callbacks after
BokehModel
has been created?The text was updated successfully, but these errors were encountered: