Replies: 1 comment 1 reply
-
@rdaud have you found the solution ? I'm struggling as well on this (V8). Thanks |
Beta Was this translation helpful? Give feedback.
1 reply
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.
Uh oh!
There was an error while loading. Please reload this page.
-
Hey, everyone!
Current situation:
I have an array of data objects called Campaign that feeds my table. Each of these data objects have a nested array called "criativos" that should render subrows out of it.
My problem:
I can't seem to find a way to pick "criativos" array and render subrows out of its data objects.
Below is an example of the data object I'll be fetching from the server:
const Campaign = [
{
id: 000242432343,
nome: 'Heineken 2022',
cliente: 'Heineken',
produto: 'Institucional',
status: 'Finalizada',
veiculacao: {
inicio: '2021/12/01',
fim: '2021/12/24'
},
criativos: [{
id: '23432434',
nome: 'Heineken 2022',
cliente: 'Heineken',
produto: 'Institucional',
status: 'Finalizada',
},
{
id: '000112432',
nome: 'Heineken 2024',
cliente: 'Heineken',
produto: 'Institucional',
status: 'Finalizada',
}]
}
]
Thanks a lot in advance 😁
Beta Was this translation helpful? Give feedback.
All reactions