I am dealing with a nested list of objects that can go up to three levels deep. Each object contains another nested object, and this nesting can continue to multiple levels. I am interested in binding these objects directly to checkboxes so that when I check an item, it will have a direct impact on the corresponding object. Is there a way to achieve this using Angular? A sample object retrieved from the server side is provided below.
Sample Object:
[{
"name": "nvs_core",
"discovered": [{
"name": "tag",
"Fields": [{
"name": "tag",
}]
}]
}]
}, {
"name": "nvs_core_trial",
"discovered": [{
"name": "nvs_src_tag",
"Fields": [{
"name": "nid",
}]
},
}]
}]