-
Hi All, Is there a way to make it searchable with GlobalFilter if it contains strings other than value of cells? https://codesandbox.io/s/wizardly-cache-w39uh?file=/src/App.js {
Header: "First Name",
accessor: "firstName",
Cell: ({ value }) => {
return <div>{`custom name: ${value}`}</div>;
}
} e.g. thanks! |
Beta Was this translation helpful? Give feedback.
Answered by
nagamejun
Jul 12, 2021
Replies: 1 comment
-
I've already solved it. {
Header: "First Name",
accessor: ( values ) => {
return `custom name: ${values.name}`
}
} |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
nagamejun
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I've already solved it.