Dear Developers,
i am using "react-virtualized": "7.24.3", all looks good on initial load but on column click header i sort out list and pass it back to Grid to renderer sorted list, i see below stack trace. i tried to add scrollTop={0} property to grid but still i see this error in console and my grid become somewhat unresponsive after that onwards. Any idea how to avoid that error ?

kindly ignore this error. i fixed it. seems like after sorting i was passing immutable instance of display records.
Sure thing. Closing.
this error still exists, it seems that it is not fixed
The error reported in this issue was user error (see here) so you're either doing the same thing, or you're referring to a different error. 😄
I have the same error after checking a checkbox. Can't figure out how to find the source of the problem, or what pkumar84 did to fix it when it happened to them.
[Followup for future Googlers:] "Might not be the case for you, but for me, 100% of the time I find it when I console log the props I am sending to List/Grid, and track back from there." An error was changing the data object used by render.
I had the same error too, because I passed a wrong rowCount(NAN) to Table
I fixed this problem by pass the right params
Would be nice to have a more descriptive error message when passing NAN to rowCount :)
Most helpful comment
I had the same error too, because I passed a wrong rowCount(NAN) to Table
I fixed this problem by pass the right params