Replies: 1 comment
-
I started to try this on this issue. I really should get back to it x|
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Has anybody managed to get ag-grid working in a solid start application?
I've followed these instructions:
https://www.ag-grid.com/react-data-grid/solidjs/
I can only even get the table to render if I wrap it in
lazy(...)
to force it to client-render, and if I do that I can only get the server to work when usingrenderSync
. If I userenderAsync
orrenderStream
, the server freezes indefinitely.Even when I get it to render as described above, the project will still fail to build.
Most annoyingly, it seems the client builds successfully but the server fails to build. I only render the grid on the client, so why is the server even trying to include it?
Has anybody had any luck using ag-grid in a solid-start project?
Does anybody have any advice for what I can do to get any further?
renderStream
so the page renders instantly while data and ag-grid is streaming down. Why does solid-start freeze indefinitely when I try this?Beta Was this translation helpful? Give feedback.
All reactions