This is no doubt explained somewhere, but I've been unable to find the answer. I'm attempting to pass a watchlist array via scope to a directive by an <ma-watch-list-get> request. The problem is that the {{points}} array therefrom doesn't contain the point's value (which is contained in the lastPayload object).
If I request values via <ma-get-point-value>, the values angumagically appear in the returned {{points}} array, retrievable either through the newly included last payload object or, simply, through point.value.
When I attempt to access the points array passed into a directive, however, I am unable to retrieve the point value. Any help would be appreciated.
<ma-watch-list-get ng-model="designer.watchList" parameters="designer.parameters" on-points-change="designer.points = $points" id="53368ae5-7ad5-40f7-b3e8-96dd61236a48" watch-list-xid="WL_test"></ma-watch-list-get>
<div>{{designer.points}}</div> <!--I'll save you the lengthy array here-->
<table>
<tbody>
<tr ng-repeat="point in designer.points">
<td><ma-get-point-value point="point"></ma-get-point-value></td>
<td>{{point.name}}</td>
<td>{{point.lastPayload.value.value}} </td>
</tr>
</tbody>
</table>