quantopian / qgrid

An interactive grid for sorting, filtering, and editing DataFrames in Jupyter notebooks
Apache License 2.0
3.03k stars 424 forks source link

instead of the widget with the table it displays 'QgridWidget(grid_options={'fullWidthRows':True... as a text #352

Open dickreuter opened 3 years ago

dickreuter commented 3 years ago

Environment

Description of Issue

The following code does not work as expected for me in a jupyter notebook

import qgrid
import pandas as pd
df = pd.DataFrame(data={'A':[1,2,3]})
qgrid.show_grid(df, show_toolbar=True)

So instead of the table, displaying the actual object, it just displays a text describing the QgridWidget object.