Hi I am developing Angularjs application. I am trying to bind value to textbox as below.
<ul>
<li ng-repeat="screen in screenMap">
<input type="text" ng-model="screenname" value="{{screen.scrn_name}}" />
</li>
</ul>
After binding value to textbox, Textbox does not show any value. But when i see in browser i can see below value is binded
<input type="text" ng-model="screenname" value="USerProfile" class="ng-pristine ng-untouched ng-valid">
May i know why i am not able to see value in textbox? Any help would be appreciated. Thank you.