selecting rows on large ag-grid #430
Replies: 4 comments
-
Your suggestions make sense. I would add one more suggestion: Perhaps segment the grid and have buttons that load a range of rows. For example, only have 1000 rows in the grid at a time. This is the solution I usually adopt when dealing with large grids. |
Beta Was this translation helpful? Give feedback.
-
Thanks, I think preventing AgGrid (or the rowData) from being included in msg.target might be my best option for now. Could you point me in the direction of where I should start poking around to make this update? As for using getSelectedRows, I need that data back in python (something like below), and I know that's not possible at the moment in JustPy |
Beta Was this translation helpful? Give feedback.
-
rowData is not included in msg.target. You see it when it is printed because of the repr method of AgGrid. The delay is because the browser is having problems handling such a large grid. |
Beta Was this translation helpful? Give feedback.
-
300 k rows? You might want to avoid such a big grid. Otherwise it's a feature request and goes to ideas. Please add more comments if your are still seriously interested and provide pull request or participate in the project by getting invited. |
Beta Was this translation helpful? Give feedback.
-
I have a large grid (over 300k rows) where users can select multiple rows. I'm currently tracking the selections by doing something similar as below. The issue is that there's a significant delay between clicks on the row. You should see this delay when running the example below.
Any suggestions on what to do? Couple things I could think of are...
Thanks
Beta Was this translation helpful? Give feedback.
All reactions