Please see plunker here that demonstrates the issue:
I want to display the corresponding English value (first column) for any given row when any of the values are changed. So for example 'Uploaded' should always be displayed in the pop-up when any of the values on the second row are changed.
I have gotten this far in example, but not quite there:
<textarea ng-model="res.Value"
ng-change="vm.changed(vm.resourceGridResources.Resources[$index].Resources[0].Value)"
style="min-width: 300px"></textarea>
For your exemple. Do not use
$index
but$parent.$index
. It will refers to the$index
of the previousng-repeat
.Corrected plunkr