How can you disable a form based on the dynamic ID of the form in AngularJS? For example, if the ID of the form comes from a foreach loop.
<div class="pan" style="margin-top:40px">
<div ng-repeat="e in Data">
<hr>
<p class="text-muted" style="color:darkgreen">Q. {{e.Question}}</p>
<form id="{{e.QuizQuestionID}}">
<div ng-repeat="s in e.option" id="e.QuizQuestionID">
<label>
<input name="options"
type="radio"
ng-click="check(e.QuizQuestionID,s.QqID)">
</label>
<span>{{s.ops}}</span>
</div>
</form>
</div>
</div>`