5,083
questions
0
votes
0
answers
25
views
Why is there space for the hidden checkboxes with newer AgGrid?
We've recently upgraded to v30.2. Our rows have a visible checkbox in the first column but not in the other columns.
With the old version of ag-grid there was no space allowed for the hidden ...
0
votes
0
answers
44
views
ag-grid select cell does not display the entire content of select cell dropdown popup
After upgrading from V22 to V28, the dropdowns do not display the complete content of the select cell as the previous version did.
before (ag grid V19 https://stackblitz.com/edit/angular-ag-grid-...
-1
votes
0
answers
31
views
Global dark mode theme switcher for AG Grid
I am using ag-grid in a Remix app that uses Tailwind CSS. The app has a global dark mode switcher.
Ag-grid has dark and light css classes available. (There is also an 'auto' class but that seems to be ...
1
vote
0
answers
37
views
Updating AG Grid from v29 to v31 - Angular
We're using ag-grid-angular and ag-grid-community version 29.1.0 and I need to update to the latest.
I've had a go using the codemods, and while that runs successfully, it doesn't modify any of the ...
1
vote
0
answers
27
views
Show Tooltip Only When Hovering Over Image in Custom Angular AG-Grid Cell Renderer
I am using Angular and AG Grid to create a table with custom cell renderers. One of my columns contains both text and an image. I also have a custom tooltip component for this column. My goal is to ...
0
votes
0
answers
77
views
ag grid agSelectCellEditor (dropdown) style broken after upgrade
I've updated ag-grid from 22.1.1 to 28.2.1, everything seems to be fine, except the dropdowns. The look and feel of the dropdowns is completely messed up now.
before:
after:
I have the imports in ...
1
vote
0
answers
23
views
How to Call aggFunc from AG-Grid API?
I can see AggFunc is calling when column grouping is done, however it is not calling in the initial load. I am looking for calling aggFunc from gridAPI, can someone guide me to it?
0
votes
0
answers
20
views
Ag-Grid React editable date dont change value
I have a date column from a grid from AG-GRID React.
{
field: 'dateEcheance',
suppressHeaderMenuButton: true,
valueSetter: (params) => {
const newTimestamp = new Date(params....
0
votes
0
answers
16
views
Implement rowDrag functionality with [pagination]="true" in ag grid
I have implemented row drag functionality, but it's not working when pagination is enabled. However, it works fine when pagination is disabled. Could you provide a solution for this issue?
I need work ...
1
vote
0
answers
23
views
Ag-Charts 10.2 is Not Loading in Require.JS App
I have a require.js app and I am adding enterprise edition of Ag-Charts in it. I can successfully add 9.0 version of Ag-Charts but when I try to add 10.2 version, it's not loading somehow. Can someone ...
0
votes
0
answers
29
views
Ag Grid - Clicking on Row Removes agSetColumnFilter Filter
I am running into an issue with ag grid related to the agSetColumnFilter filter in a React application. If you set the agSetColumnFilter filter, then click on the row in the filtered table, the ...
0
votes
0
answers
15
views
AG Grid keeps rows selected after rows are deleted
I have a streamlit app where I use AG Grid to display data. I have a list of favourites, and here I have a button which I can use to delete the favourites. The rows are then deleted in the source, and ...
0
votes
0
answers
9
views
How to do an overflow visible in a custom filter with AgGgrid React
I want to do an overflow visible in a custom filter with AgGgrid React.
But Idk how to do it. I have a custom filter in AgGrid React with a DropDownList, but I cannot show by default the options of ...
0
votes
1
answer
81
views
AG Grid format cell to require comment when other cell is not 0
I have a Streamlit web app which uses an AG Grid table to display data. As part of the app the user has to update a forecast. The forecast is then compared to the budget. If there is a variance, then ...
0
votes
0
answers
25
views
Plot AG Grid Detail data in AG Chart instead of Master detail
I have built a nested grid using AG Grid (https://www.ag-grid.com/react-data-grid/master-detail-nesting/). I have also intergraded AG Charts, including 2 pie charts and a bar chart. A sample of the ...