How can I access Task ID in table row actions #5220
Unanswered
onurhan1337
asked this question in
Q&A
Replies: 0 comments
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.
-
In my current implementation of the DataTable component I'm unable to access the task ID in the DataTableRowActions component. I'm trying to pass the task ID from the selected row to DataTableRowActions, but the current approach of using row.original.id is not working as expected.
I'm attempting to pass the task ID information from the selected column to the DataTableRowActions component. The goal is to utilize this ID to trigger the opening of a popover containing comprehensive details about the corresponding task. However, I have encountered challenges in implementing this functionality.
I've tried catch with
row.original.id
orrow.id
but that's not worked. Row original id gives me only the least item information.columns.tsx
:data-table-row-actions.tsx
:data-table.tsx
:Beta Was this translation helpful? Give feedback.
All reactions