You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Maybe I'm missing the obvious but is there a method do update data, rather than setting the source?
I'm using Papa Parse to stream CSV files which are 30MB+, so I use the chunked option and need to update or add data on each chunk, which I can adjust the size for.
How with Cheetah Grid could I do this? This data is JSON although I can also get it as simple arrays with the headers separate, which is a lot less data coming out of the parser.
but it's replacing all my other data on each chunk. So if I have a way to return the data from the grid, I can then just do a concat - is there a method to return the current data?
update: I don't know if this is very memory efficient, but I set my own variable loadedData above my scripts. Then in the data gathering fn, I do this:
data = loadedData.concat(data)
grid.records = data;
loadedData = data;
Maybe I'm missing the obvious but is there a method do update data, rather than setting the source?
I'm using Papa Parse to stream CSV files which are 30MB+, so I use the chunked option and need to update or add data on each chunk, which I can adjust the size for.
How with Cheetah Grid could I do this? This data is JSON although I can also get it as simple arrays with the headers separate, which is a lot less data coming out of the parser.
My parsing fn:
The text was updated successfully, but these errors were encountered: