Hello! I am currently working on an AngularJS application and have encountered a puzzling issue. I am attempting to bind a value to a textbox using the following code:
<ul>
<li ng-repeat="screen in screenMap">
<input type="text" ng-model="screenname" value="{{screen.scrn_name}}" />
</li>
</ul>
Even though the value is successfully bound when inspecting the elements in the browser console, the textbox itself does not display any value. Here is an example of the bound value:
<input type="text" ng-model="screenname" value="USerProfile" class="ng-pristine ng-untouched ng-valid">
I would appreciate any insights on why the value is not appearing in the textbox. Thank you for your help!