In controller I\'ve a list like this:
scope.data = [ { user: { address: { city: \'Boston\'} } } ];
And a property, where I\'ve the name to acce
You can do it like this because of ng-repeat:
ng-repeat
So you do not need to declare this:
$scope.propertyName = 'address.city';
Demo