New to Angular, and this simple problem cannot be solved: I have this html
<input type="number" max="20" step="0.1" name="est_mpg" id="est_mpg" data-ng-model="est.mpg" class="form-control" value="5.00" />
I canβt get the default value so that it is displayed, what is happening, it blinks and disappears, so the field is empty, and I can tick up / down from the default value of min. It worked fine until I turned on input of type = "number" from the text.
source
share