dash-ag-grid
dash-ag-grid copied to clipboard
Dash AG Grid is a high-performance and highly customizable component that wraps AG Grid, designed for creating rich datagrids.
Hi everyone, My project need to use dash ag grid with server-side row model. But When I read the document, there seem to be very few examples of the server-side...
To enable https://github.com/plotly/dash/issues/2254
I am using the masterDetail feature of the AG Grid Table. For the javascript version, there exist the feature to create the columns of a detail subtable dynamically: [JavaScript Grid:...
Hi, there is another issue that comes with the v31.0.0 update, which may or may not be related to https://github.com/plotly/dash-ag-grid/issues/267 A minimal example is as follows: Whenever add row is...
Fixes #299. * testing for grid destroyed before trying to get the state
``` dash 2.16.1 dash_ag_grid 31.0.1 dash-bootstrap-components 1.5.0 dash-core-components 2.0.0 dash-html-components 2.0.0 dash-mantine-components 0.12.1 dash-table 5.0.0 dash-testing-stub 0.0.2 ``` **Description** Set up two dash pages. One should contain `dash_ag_grid`. Run the...
Explains how versioning works, and adds a test to ensure we actually follow the system!
It would be helpful to see a list of persistence props [https://dash.plotly.com/dash-ag-grid/persistence](https://dash.plotly.com/dash-ag-grid/persistence) here. It would also be useful to have an example of how to persist props via javascript when...
Based on the [Docs:.](https://dashaggrid.pythonanywhere.com/persistence/persistence) We would like to make the data persist after editing the table. The `persisted_props` might be `rowData`. However, the persistence does not work as in the...
I have implemented a `dash-ag-grid` component that dynamically receives a list and populates draggable rows: ``` html.Div([dag.AgGrid( id='blend-options-ag-grid', rowData=[], columnDefs=[{'field': 'Current canvas blend'}], defaultColDef={"sortable": True, "filter": True}, columnSize="sizeToFit", dashGridOptions={ "rowDragManaged":...