nstoertz

Results 11 comments of nstoertz

I suspect this might help also help solve https://github.com/inovua/reactdatagrid/issues/26, which expressed the need to have a controlled data source kept in sync with the grid's internal item cache. For example,...

The problem is that I want to invalidate ALL the data in the grid while using livePagination, so that the grid refetches data from my data source as needed to...

We're able to work around this problem in some cases by calling: ``` // Invalidate the grid's data when table columns search variables change. If this // isn't done then...

Here's what I'm currently trying for TreeGrid, but I'm finding it's unreliable: ``` gridRef?.current?.setSkip?.(0); gridRef?.current?.silentSetData([]); // Clear all expanded nodes. Otherwise, the grid will cache these // nodes and not...

Our problem is not with performance - it's that it's very cumbersome for us to program all columns to be compatible with all data sources. For example, if I have...

Glad you are working on a solution! Resetting the grid to have no data between the time the dataSource reference changes and when the new dataSource resolves seems like a...

Any update here? Our current workaround is to unmount the grid and remount after a timeout, but this causes the grid to flash and is not ideal. We could potentially...

I was wrapping the grid component and briefly rendering empty content when dataSource, columns, or other props change. There were several downsides... callers need to be careful to pass memoized...