I have this array
$scope.critere_cuisine = [
{"name" : "Assiettes plates",
"etats" : $scope.etats
}]
which refers to
$scope.etats = [{ "text": "Bon", "checked": true },
{ "text": "Moyen", "checked": false },
{ "text": "Mauvais", "checked": false }];
But i don't manage to make it work, where am i wrong ?