I'm trying to do the following:
I have a list inside a table
<table>
{{#each controller}}
<tr>
<td>
{{#linkTo person this}}{{name}}{{/linkTo}}
</td>
</tr>
{{/each}}
</table>
and i would like to render the details of an item just after the item itself. in this way:
<table>
{{#each controller}}
<tr>
<td>
{{#linkTo person this}}{{name}}{{/linkTo}}
</td>
</tr>
<tr>
{{outlet}}
</tr>
{{/each}}
</table>
Unfortunately it does not work. Ember wants the outlet to be placed outside the each. Can i do something? maybe a context change? or the only thing i can do is a dom manipulation? (that's not the best!!)
thank you