Replies: 1 comment
-
You will get arguments in Cell...there you can row data by accessor and also original |
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.
-
I have a table displayed and in that I have few columns and in one column I want to add a button and enble it only if my other columns value is so and so.
eg: const columns = [
{
Header: "col 1",
accessor: "columnOne",
},
{
Header: "col 2",
accessor: "coulmnTwo",
},
{
Header: "Edit",
accessor: "editProp",
Cell: () => (
},
];
now in this the edit accessor should be shown when only column two data matches "SUBMIT".
I would like to know how can i access the col2 accessor from eidt column.
Beta Was this translation helpful? Give feedback.
All reactions