Just wanted to share an issue I'm facing with ng-disable in a fiddle. I've been trying to disable all input text boxes that already have a value, but the problem is that when I try to enter a value into a textbox that doesn't have one, it gets disabled after just typing a single character. Has anyone else encountered this same issue before? Please share your thoughts.
Click here for more on disabling input text boxes inside ng-repeat
<input type="text" ng-model="valuesForOutputs[item.name][i]"
ng-disabled="valuesForOutputs[item.name][i]" required name="value"
placeholder="Enter value">