Hey there, I'm facing an issue where multiple ng-repeat directives are nested like this:
<form ng-repeat="pt in prolist">
Frequency <input type="checkbox" ng-model="pt.req" />
<div ng-repeat="disc in prolist">
------
</div>
</form>
I am attempting to achieve something similar to the following:
<div ng-repeat="disc in prolist" where pt.id = disc.Pt_id>
If you could provide guidance on how to write this line of code in AngularJS, it would be greatly appreciated. Thank you!