using qgrid without opening notebook and create interactive table in offline html
gopi1616 opened this issue · 1 comments
gopi1616 commented
Hi, this is not an issue but a question if there is already an answer or a suggestion/feedback.
I am trying to see if there is an option to create these interactive tables from a dataframe without having to open a notebook in an html file. This way it is easy to create them within the script and also easily shareable.
import qgrid
from ipywidgets.embed import embed_minimal_html
view = qgrid.show_grid(annotated_df)
embed_minimal_html('qgrid.html', views=[view], title='QGrid')
but the resulting HTML is blank.
pivottablejs work jus as I mentioned above but qgrid is much simpler and best. Currently, I do not see anything else that does this. This feature would be very helpful for many people.