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.
<bodyng-app="test"><!-- This should display 10, 20, and 30 on 3 different table rows --><table><tr><th>Column</th></tr><rowng-repeat="i in [1, 2, 3]" idx="i"></row></table><scriptsrc="https://ajax.googleapis.com/ajax/libs/angularjs/1.5.5/angular.min.js"></script><scripttype="text/javascript">angular.module("test",[]).component("row",{template: "<tr><td>{{$ctrl.idx * 10}}</td></tr>",bindings: {idx: "<"}});</script></body>
Current behavior
The component instances (row) are not inserted inside the table. It looks they attach somewhere outside the table and show:
10 20 30
Column
Expected/desired behavior
Column
10
20
30
Which versions of Angular, and which browser / OS are affected by this issue? Did this work in previous versions of Angular?
Not working on Angular 1.5.5 nor 1.5.4, tested on Chrome/Linux.