You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 12, 2024. It is now read-only.
I'm creating the form for objects items. One of the item is array of items. So i use ng-repeat to iterate over it. Each of them is input text field. So I got the like:
<divclass="control-group" ng-repeat="(key, item) in object.items"><divclass="controls><input type="text" ng-model="object.items[key]"/></div></div>
When I'm trying to enter some code after each entered word my input gets unfocused and to continue I need to focus on it again using cursor. If I use html ng-model="item" instead of htlm ng-model="object.items[k]" The input field bacames blocked and uneditable
Firebug doesn't show any error logs or alerts. But seems it should work in this way