web component - Render table rows with Polymer's <core-list> -
i trying use <core-list>
render rows table like:
<table> <tbody> <core-list data="...">...</core-list> </tbody> </table>
unfortunately, it's not simple. <tbody>
can't contain <core-list>
element it's ignored browser (or @ least assume that's reason). thought obvious use case <core-list>
official documentation doesn't mention using tables @ surprising me.
maybe i'm blind wasn't able google i'm wondering if can't use <core-list>
in way or approach isn't right.
it seems way use <div>
s , style them table because of reasons described in original question.
this applied polymer 0.5 issue same polymer 1.0 well.