http://plnkr.co/edit/g89wEeG30sOXhgzHWX0Z?p=preview
I read about it, and it seems that the consensus is that this problem, when binding to primitives was resolved in 1.1.2 *, still my problem persists. Maybe I'm using a repeater incorrectly? Please note that I cannot change the data structure.
I am open to any workarounds or creative hacks. So far, the only thing that I managed to get correctly is to use this version of angular: http://ci.angularjs.org/job/angular.js-pete/12/artifact/build/angular.js
But I do not think that this will be fixed in the near future. Thoughts?
* Difficulty with ng-model, ng-repeat and inputs
You need to use the new ngRepeat syntax (introduced in 1.1.x) and use track by $index :
track by $index
<td ng-repeat="point in series.data track by $index"> <input type="number" ng-model="series.data[$index]" /> </td>
Work panel: http://plnkr.co/edit/CEwr2GJ4YrS5H7yBOKJn?p=preview
More here
Source: https://habr.com/ru/post/948807/More articles:Google Play says βyou need to use a different package nameβ - why? - androidReading data from csv to pandas when date and time are in separate columns - pythonCount IOrderedEnumerable without consuming it - performanceIs there a way to set the time zone in the laravel 4 database.php configuration file? - laravelCreating XML using LINQ to XML - c #Text doesn't wrap, layout breaks instead - htmlAngularJS - I need $ scope. $ Apply when using $ http - angularjsHaskell: Is there an idiomatic way to insert each item into a list in its own list? - listJQuery UI Tooltip with data attributes - jqueryandroid phonegap / cordova change property to webview - androidAll Articles