according to this solution i built my AngularJS app. Now i want to access a parent's value within a nested structure.
I tried this, but it does not work: http://jsfiddle.net/BwDAP/
<body  ng-app="WeeklyApp" ng-controller="WeeklyController" >
    <div ng-repeat="week in myData">
       <div ng-repeat="day in week.days">
          {{day.dow}} - {{day.templateDay}}
          <b>Jobs:</b><br/> 
           <ul>
             <li ng-repeat="job in day.jobs"> 
               {{job.name}} 
                 <br />
               <!-- PARENT -->
               parent: {{job.parent.dow}} 
             </li>
           </ul>
       </div>
    </div>
</body>
Any solutions? thx