Replies: 2 comments
-
You cannot parse Arrow IPC with a |
Beta Was this translation helpful? Give feedback.
0 replies
-
FYI for anyone that needs to decode... |
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.
Uh oh!
There was an error while loading. Please reload this page.
-
Hi,
I'm currently trying to use perspective with AG_Grid, I'm running into a small issue
From what I understand, in the on_update the delta rows are passed into the function as an arrow format
I tried using the code below to decode, however it is coming back with a mixture of the correct columns headers and malformed symbols
`
onUpdateRef.current = await clientView.on_update(
async (updated: any) => {
const decoder = new TextDecoder('utf-8');
const decodedString = decoder.decode(updated.delta);
// Update state with decodedString
},
{ mode: 'row' },
);
`
Beta Was this translation helpful? Give feedback.
All reactions