1,107 questions
0
votes
1
answer
17
views
Ag-Grid: Return "default" group cell renderer
I have an ag-grid with grouping using the "singleColumn" group styling. I want to use a custom renderer in my group column, but I only want it to be applied to the "individual" ...
-1
votes
0
answers
27
views
Custom editors are not working after upgrading AG Grid from version 29 to 33.2.3 [closed]
After upgrading AG Grid from version 29 to 33.2.3, the cell value is not changed using custom editors
Framework: React.js
ag-grid-enterprise: 33.2.3,
ag-grid-community: 33.2.3,
ag-grid-react: 33.2.3
...
1
vote
0
answers
19
views
AG Grid makes multiple API calls on filter change when using server-side row grouping
I'm facing an issue where applying filters in my AG Grid with server-side row grouping is triggering multiple API calls. In some cases, it even results in continuous API calls.
This only happens when ...
-1
votes
0
answers
30
views
Does AG Grid alter state objects when inputting them into a grid?
The big problem here is that my parameter garage is loading into the component properly, but doesn't seem to be accessible within any of the functions inside the component. I want to use the garage ...
2
votes
0
answers
34
views
AG Grid React Crashes Inside Tableau Extension Due to Invalid CSS Selector ':not(title, meta)' DOMException
Description
While using AG Grid v33.2.1 within a React application embedded as a Tableau Dashboard Extension inside Tableau Desktop, I encounter a DOMException due to an invalid selector originating ...
-3
votes
2
answers
63
views
How to Capture Full AG Grid (Including Off-Screen Content) as an Image? [closed]
I'm working on a React application that utilizes AG Grid to display large datasets with over 20 columns and 10,000 rows, necessitating both horizontal and vertical scrolling. I need to capture the ...
0
votes
0
answers
18
views
upgrade React ag-grid enterprise 28+ to ag-grid 31.3.4 streaming response freezing the page
grid community,
I am facing an issue where I am upgrading my React application ag-grid from v28+ to V31.3.4, it is a streaming chatbot application where user asks a prompt and API returns streaming ...
0
votes
0
answers
20
views
AG-Grid-React: Use separate valueGetter for each filter in agMultiColumnFilter (MultiFilterModule)
Context:
I am working with AgGrid react to display some data,
let's say this format:
type Vehicle = {
modelName: string;
manufacturer: 'BMW' | 'VOLVO' | 'Mercedes' | 'Fiat'; // more brands...
...
0
votes
0
answers
32
views
Implement lazy-loading using client-side rendering in AgGrid
I am unable to manually implement lazy-loading in the grid using client-side rendering. The reason for not using row model 'infinite' or 'server-side' is that we do not want to make changes in the ...
0
votes
3
answers
108
views
agGrid React: CSS blocked "refused to apply inline style" [closed]
I'm using the React version of agGrid v33.0.4 with React 18, and when I run my React app locally, it works fine; the agGrids look great.
However, when I deploy my React app, none of the agGrid's CSS ...
0
votes
0
answers
11
views
How do I set a tooltip per component inside of a cell in an AgGridReact
I have an AgGridReact. Inside of the grid, in each row, I have a cell that contains multiple images. Each image needs to have a separate tooltip. I'm using mui/Tooltip. I can't figure out how to get ...
0
votes
0
answers
28
views
Resizing columns issue in AG Grid React
I have two grids which are in sync using alignedGrids property. I gave first two columns as flex:0 with minWidth and remaining n columns as flex:1 weith minWidth as 140.
When I resize the browser to ...
0
votes
1
answer
38
views
onFirstDataRendered runs too early
I'm using onFirstDataRendered to auto-size my AG Grid columns once data has loaded. However, without introducing a delay, the auto-sizing runs based on column headers only.
export default function ...
0
votes
0
answers
28
views
How to disable row expand when doing multipleColumns row grouping
I have the following AgGrid React table:
const headers: ColGroupDef[] = [
{
headerName: '',
children: [
{
headerName: 'IBU/Mandate',
field: 'IBU/Mandate',
...
0
votes
0
answers
29
views
Ag-Grid cell editing issue in React
I am new to Ag-grid and am trying to create a basic table using Ag-grid and React.
I am wanting to have some of my cells to be editable while some not.
I tried using the source code from API docs, but ...