-
Notifications
You must be signed in to change notification settings - Fork 524
Closed
Description
cc @aschlaep
Eg.
import ipywidgets as widgets
widgets.Widget.close_all()
def recursive(n):
if n == 0:
return widgets.Button(description='Hi')
else:
cls = (widgets.VBox if n % 2 else widgets.HBox)
return cls([recursive(n-1), recursive(n-1)])
display(recursive(9))
display(len(widgets.Widget.widgets))
Will often fail to render in voila. I think it's likely to be a timing/order issue in the manager (message received before an event handler is attached), or packets being dropped (iorate limit?)
Metadata
Metadata
Assignees
Labels
No labels