When I use table, subviews doesn't work.
For example this works fine
{{#each}}
{{view App.RowView}}
{{/each}}
But this breaks
<table>
<tbody>
{{#each}}
{{view App.RowView}}
{{/each}}
</tbody>
</table>
Error says
Uncaught TypeError: Cannot read property 'nextSibling' of null
EDIT: Here's the link to jsbin http://jsbin.com/nodotize/1/edit when you try to add item, it fails and throws error, but if you copy the text from rowView template and paste it between each it then works http://jsbin.com/nodotize/5/edit
<script>tags along..Ember is selecting <script> tag from table, and trying to do DOM ops which is not happening...you have your solution in 2nd link anyways...Ember people very soon are removing metamorphs anyways... - thecodejack