This form is not behaving as expected.
<form name="myForm">
<input ng-disabled="true" type="text" >*
</form>
I can't figure out why the input field is not disabled as intended. I even tried using $scope in the controller:
$scope.diss=true;
And in the HTML file:
<form name="myForm">
<input ng-disabled="diss" type="text" >*
</form>
Even with these changes, it still doesn't work. Any suggestions?