genetic-orange•3y ago
Table.Column not render my relation StrapiV4
hello guys, good night
I trying display a relation in <Table.Column> but im not getting
the dataSource from tableProps is correct but not render value


10 Replies
conscious-sapphire•3y ago
Hello @gvt3ch can you try to pass
key prop to the TableProps as well?genetic-orangeOP•3y ago
key="[doencas]["id"]" ?
i passed and not work
genetic-orangeOP•3y ago

genetic-orangeOP•3y ago
I using strapi v4 dataprovider with antd design
conscious-sapphire•3y ago
Please see the documentation here: https://refine.dev/docs/advanced-tutorials/data-provider/strapi-v4/
I guess you also need to pass
metada.populate: ["doencas"]Strapi-v4 | refine
refine supports the features that come with Strapi-v4.
genetic-orangeOP•3y ago
i passed
in useTable by antd design
conscious-sapphire•3y ago
Can you provide a minimal reproducable example on stackblitz or something similar? It's hard to tell without seeing the code 🙏
genetic-orangeOP•3y ago
hey
in one to one relation worked succesfull
but one to many not
conscious-sapphire•3y ago
Hey @gvt3ch
render={(_, record) => (
<Space>
<EditButton
hideText
size="small"
recordItemId={record.id}
/>
<DeleteButton
hideText
size="small"
recordItemId={record.id}
/>
</Space>
)}
Can you try with custom render like this
Hello @gvt3ch , did the previous message fix your issue?
genetic-orangeOP•3y ago
hello
yes, fixed
thank u