ipywidgets icon indicating copy to clipboard operation
ipywidgets copied to clipboard

scroll bar not displayed in Jupyter Lab using ipywidgets.Output()

Open gioxc88 opened this issue 4 years ago • 6 comments

This is what I get by simply displaying a pandas dataframe and it is the expected result

image

This is what I get if I try to capture the output in a ipywidgets.Output() and then display it

image

as you can see the dataframe is not displayed correctly and I couldn't find any workarounds to make it work. Could anyone please suggest how to fix it?

Many thanks

gioxc88 avatar Apr 05 '20 17:04 gioxc88

any update on this?

gioxc88 avatar Apr 21 '20 03:04 gioxc88

I'm having the same problem! It would be really nice to have an update on this!

MTereM avatar Jun 15 '20 10:06 MTereM

same issue on jupyterlab==3.0.14, can be dealt with using https://github.com/jupyter-widgets/ipywidgets/issues/2778#issuecomment-584765222

    out = widgets.Output()
    out.layout.width='1000px'
    with out:
        display(res)
    return out

timfeirg avatar Apr 23 '21 13:04 timfeirg

output.layout.overflow = 'visible'

gbrault avatar Sep 25 '21 12:09 gbrault

I am having this issue also on JupyterLab 3.4.4

devmcp avatar Jul 28 '22 09:07 devmcp

anyhting?

gioxc88 avatar Feb 17 '23 16:02 gioxc88