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
0
votes
1 answer

Trigger event when headerCheckboxSelection is marked?

I've been reading the ag-grid documentation and I haven't been able to find out if there's any event to know when the checkbox to select or un-select all column was clicked. I know I can use onRowSelected() but I need to know when Select or…
Romina
  • 195
  • 1
  • 3
  • 12
0
votes
0 answers

.Get status of visible rows in ag-grid

I am using Ag-grid in my React app, I need to trigger an action when the user reaches the 90% of the rows visibles (no matter if they made scroll or click the 'next' button). How can I know that? which event should I use? My thoughts are that…
Sredny M Casanova
  • 4,735
  • 21
  • 70
  • 115
0
votes
2 answers

ag-grid with react not working

I have a problem getting ag-Grid to work with my react app. Whatever I try, I only get some text, I don't see the grid. I don't know what I'm missing. Here is my code: /* * ---------------------------- * index.js * ---------------------------- …
BluePrint
  • 1,926
  • 4
  • 28
  • 49
0
votes
1 answer

Is it possibile to create a master detail grid with cell render based on a network call?

I created a static master detail grid with some data inside and it works fine, now I would like to populate my "node child detail" getting data from a network call, is it possible? My code is very similar to this.
michoprogrammer
  • 1,159
  • 2
  • 18
  • 45
0
votes
1 answer

Ag-grid: Data Size Limitation for Enterprise license

I am integrating ag-grid in my product and wondering if anyone has done stress testing of ag-grid to see the limits of # of rows/#of columns (or file size) can break ag-grid?
YasirSui
  • 1
  • 1
0
votes
1 answer

react: running a method after second time componentWillRecieveProps is called

I have a main ag-grid for my react app. It re-renders when a button is clicked (which provides new data). I wanted to add a pre-filter that initially filters the data. so I created a new method which creates my prefilter model and then applied…
user3120554
  • 641
  • 2
  • 11
  • 21
0
votes
1 answer

ag-grid: pre-setting a (default) filter for the grid

I have a react app and everything seems to work fine. I want to add an additional piece of functionality with filtering although I'm currently stuck. Can anyone provide some advice on how to preset the filter using the example filtering method I've…
user3120554
  • 641
  • 2
  • 11
  • 21
0
votes
1 answer

ag-grid checkboxSelection default value

I have an ag-grid with a simple checkboxSelection and would like to have some rows "checked" when loading the grid/data. { headerName: ' ', colId: 'select', checkboxSelection: true, …
Bear
  • 31
  • 1
  • 7
0
votes
1 answer

ag-grid-react accessing the corresponding row of a chosen column value

I'm using ag-grid-react and I would like to access all the other column values of a row based on the value of one of its columns. Is this possible? This should be a very easy and direct method but, strangely, I've found no accurate answer in the…
Oumaima
  • 384
  • 2
  • 8
0
votes
1 answer

AgGrid setFrameworkBeans is not a function

I am using a trial enterprise version of ag-Grid v 8.0.0 in react. I have installed ag-grid-react v8.0.0 and have set the license. If I try to create an Ag grid react using
ajaykumar
  • 646
  • 7
  • 17
0
votes
2 answers

React component Ag-grid filterChangedCallback does not trigger doesFilterPass

I am attempting to programmatically cause a filter to run doesFilterPass on component load. So far I've tried adding filterChangedCallback to componentWillMount, componentDidMount, componentWillUpdate and componentDidUpdate calls. However none of…
David Choi
  • 6,131
  • 10
  • 28
  • 28
0
votes
1 answer

How to get custom values for each richSelect in ag-grid

I have ag-grid reach based application where richSelect dropdowns are being used for certain columns. For some of richSelect columns, values in the dropdown should be based on an id. My JSON data would look like this: data : [{ collegeId :…
Yogesh
  • 1,307
  • 3
  • 13
  • 18
0
votes
1 answer

Ag-grid + React + Redux not styled

I am able to build the example app of app of AG-Grid. It's running smoothly and is styled nicely. Then I would like to move it to my app but it seems that the styles are not applied. I put all the example files from…
Amio.io
  • 20,677
  • 15
  • 82
  • 117
-1
votes
0 answers

How to show my react-select options of last cell outside of ag-grid table in react?

I am using react-select and added it inside ag-grid react table. I am using it for a cell value and providing options to select from. Now the problem is that in last row, when I click the select field the options are hiding behind the table end. I…
Pradhumn Sharma
  • 1,663
  • 2
  • 10
  • 19
-1
votes
0 answers

how can i move columns with children to a new line in AG GRID

enter image description here I need to make an ag grid table so that a certain number of columns are in a row and the rest are moved under it? in this screenshot, each blue header is a separate grid table, the values ​​are marked in orange, these…