So we have a nested array in our json object that I'm trying to update using Kendo React Forms (See Below).
I've mapped the array and have tried to use name={ExampleArray[index].date} yet can't seem to pull the values in or update them. Is it possible? If so how do I go about doing it?
Thanks.
{
"createdOn": "2007-11-15T17:14:01.763",
"lastUpdatedOn": "2007-11-15T17:14:01.763",
"color": "Green",
"ExampleArray": [
{
"name": "Date Name",
"id": 1,
"date": null
},
{
"name": "Date 2 Name ",
"id": 2,
"date": null
},
{
"name": "Date 3 Name",
"id": 3,
"date": null
},
]
}