Questions tagged [ag-grid-react]

ag-Grid is an advanced user interface grid designed to integrate deeply into React. Questions related to this tag should target specifically the use of ag-grid with the React JavaScript library.

Github repository: https://github.com/ag-grid/ag-grid

Related tags:

1022 questions
3
votes
1 answer

AG Grid: cellRenderer disables value formatter

I have a custom cellRenderer in my AG-Grid and I'm using a valueformatter: const columnDefs = R.map( R.pipe(x => ({ headerName: strings[x.name], field: x.name, valueFormatter: contactInformationFormatter, comparator: x.name…
J. Hesters
  • 13,117
  • 31
  • 133
  • 249
3
votes
0 answers

How to remove all markers without any side effect in react-google-map?

I am working with react-google-maps component. Since I have a lot of markers to be shown on the google map, I used MarkerClusterer. I can select or deselect rows in the ag-grid table to make the marker shown on react-google-map. If I select all, all…
3
votes
2 answers

Returning the value from the clicked cell in Ag-Grid

I'm trying to return the row data when a cell is clicked in ag-Grid. I have defined the following component that I pass into the cellRendererFramework shown further down. import { ICellRendererParams } from "ag-grid-community"; import * as React…
blankface
  • 5,757
  • 19
  • 67
  • 114
3
votes
1 answer

How to add a onclick event in ag-grid cell renderer reactjs and access the class function

I would like to add a button for an ag-grid table column in reactjs at the time column definition. And onclick I need to call a class function. I would like to create onclick event and pass the params value to the function and make an api call from…
Santhosh A
  • 31
  • 1
  • 1
  • 6
3
votes
2 answers

custom ag-grid-filter using dropdown for filtering particular column using react-redux

I am working on a project which requires ag-grid-filter outside with dropdown which will filter out the result of one column. I have tried to do this using react and redux form.