hi,
I'm using Polymer with Dartlang and was looking for solution for having multiple rows per item model
when iterating TRs and I found that:
<table>
<tbody template repeat="{{item in items}}">
<tr><td>row 1</td></tr>
<tr><td>row 2</td></tr>
</tbody>
</table>
IS currently working fine (at least with current Dart dev Polymer version) and I find it super-useful.
So here comes my question: Is Polymer devs intention to support this construct ?
If not is there any other way to have multiple rows per model item in repeat template in table?
cheers,
t.k