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
i want to get rendered cell data as an array, i tried use below code
const values = cells .map((cell) => cell.getValue());
but, i want data how its showed in table, i used flexRender, But it will return reactElement, i want rendered data instead of that
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
-
i want to get rendered cell data as an array, i tried use below code
const values = cells .map((cell) => cell.getValue());
but, i want data how its showed in table, i used flexRender, But it will return reactElement, i want rendered data instead of that
const values = cells .map((cell) => flexRender(cell.column.columnDef.cell, cell.getContext()));
Can someone help me in this...
Beta Was this translation helpful? Give feedback.
All reactions