Well, i need to access some information inside of array that is inside of another array in Json Format.
more specific like this:
[
{
"id": 1,
"name": "PowerRanger",
"description": "BLUE",
"connections":
[ {"id": 123,"megazordName": "Fer","isSet": true},
{"id": 456,"megazordName": "Alg","isSet": false}
]
},{
"id": 2,
"name": "PowerRanger",
"description": "RED",
"connections":
[ {"id": 789,"megazordName": "Tes","isSet": false},
{"id": 369,"megazordName": "EXp","isSet": true}
]
},{
"id": 3,
"name": "PowerRanger",
"description": "WHITE",
"connections":
[ {"id": 258,"megazordName": "Ref","isSet": false},
{"id": 147,"megazordName": "Mob","isSet": false}
]
}
]
And i need to disable all the "megazordName" 's when only ONE is selected (more specifically with checkbox). Need some help :)
Here's the plunker. How can i do it?