Is it possible to add the element id in Angular,
<div class="col-sm-8">
<select class="form-control input-sm"
id="ruleResetType"
name="ruleResetType"
ng-model="rule.resetType"
ng-options="data as data for data in Type"
ng-required="true"
ng-disabled="isEditable(id)">
</select>
</div>
I wonder if is it possible to add id at isEditable(id)", I mean the id shall be the element.id?
ng-disabled="isEditable('ruleResetType')"in the markup.