ipyaggrid icon indicating copy to clipboard operation
ipyaggrid copied to clipboard

Using ag-Grid in Jupyter notebooks.

Results 19 ipyaggrid issues
Sort by recently updated
recently updated
newest added

Is there a way in python to programmatically auto size the columns after the grid has been created (for example after updating the data)? thanks

[This example](https://gitlab.com/DGothrek/ipyaggrid/-/blob/master/docs/notebooks/demo-build-dataframe-output-html.ipynb) of how to use ipyaggrid shows the initialization of the agGrid with a fully loaded data (frame), which corresponds to the [client-side row model](https://www.ag-grid.com/javascript-data-grid/client-side-model/). ``` g = Grid(grid_data...

The "Export to Excel" button uses the extension `xls` instead of `xlsx`. Given this minimal example: ``` import pandas as pd import requests from ipyaggrid import Grid url = 'https://raw.githubusercontent.com/widgetti/ipyaggrid/master/data/meteorites.json'...

Hi, I'm trying to add an oncellclicked event to my table where the cell value is returned when user click the cell, I know this is possible using AG grid,...

This issue is to track a potential improvement on this lib. Currently, the HTML export of ipyaggrid Grid component is based on the "automatic" export of ipywidget components to HTML...

More info needed

Hello guys, just wondering if this is still being maintained. Really appreciate you work on `ipyaggrid` but as it's been almost 3 months since there's been a reply to the...

Allows the current table "grouping" definition to be exported with the grid. This allows for python-side methods to recognize the grouped state of the table - Added 'groups' export to...

This PR allows the update of the grid export when the user sorts the table - this is a configurable option and is disabled by default: `sync_on_sort = False`

This change allows the rows to be exported as displayed in the table. This considers the following: - only sorted rows are taken (as previous implementation) - sorting order of...