You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
sc = Sidecar(title='Trace')
with sc:
display(HTML(functools.reduce(lambda x, y: x+y, c.htmlStream())
The text was updated successfully, but these errors were encountered:
kevinsneel
changed the title
Suing Sidecar in jupyterlab. Trying to show HTMl. Just shows in standard cell output instead of opening a sidecar.
Using Sidecar in jupyterlab. Trying to show HTMl. Just shows in standard cell output instead of opening a sidecar.
Feb 24, 2020
Here's my code. What am I doing wrong:
sc = Sidecar(title='Trace')
ht = widgets.HTML(
value="Hello World",
placeholder='Some HTML',
description='Some HTML',
)
with sc:
display(ht)
I have also tried:
sc = Sidecar(title='Trace')
with sc:
display(HTML(functools.reduce(lambda x, y: x+y, c.htmlStream())
The text was updated successfully, but these errors were encountered: