quantopian / qgrid

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

Jupyter lab 0.34.1 -- Error displaying widget #217

Open zooks97 opened 6 years ago

zooks97 commented 6 years ago

Environment

Description of Issue

Trying to display a qgrid_showgrid prints instead Error displaying widget with no error / warning messages printed to console.

Reproduction Steps

Simple example which gives the problem:

import pandas as pd
import qgrid
from IPython.display import display

df = pd.DataFrame([{'a': 1, 'b': 2}, {'a': 3, 'b': 4}])
qg = qgrid.show_grid(df, grid_options={'editable': False})
display(qg)
darribas commented 6 years ago

I run into a similar problem when building this Docker container

TimShawver commented 6 years ago

OK thanks, haven't had a chance to try this out yet but I should be able to take a look this week.

veonua commented 5 years ago

Had same error with azure plugin installed in jupyter, bad written plugin redefined JQuery and removed JQuery.ui =(

try to run 'jQuery.ui' in console, v1.12.1 is recommended

sotte commented 5 years ago

Any updates here?

fable187 commented 5 years ago

Any updates on this one? I have the same issue. I've spent hours looking for an answer.

joseberlines commented 4 years ago

Same issue here