Closed
Description
It seems there are some problems either with the output widget append_display_data
method (from #1752), or how we display widgets.
from ipywidgets import Output, IntSlider
out = Output(layout={'border': '1px solid black'})
out.append_display_data(IntSlider())
out
should capture the intslider inside of the output widget, but instead we get
If I use the output widget as a context manager, it works fine:
from ipywidgets import Output, IntSlider
from IPython.display import display
out = Output(layout={'border': '1px solid black'})
with out:
display(IntSlider())
out