I'm trying to create a data table component using Polymer 1.0. I'm facing a strange issue that is reproduced only on IE10, (verified Chrome and Firefox are OK).
The following code, fails to display the content of the bound data:
<table>
<tr>
<template is="dom-repeat" items="{{columns}}" as="col" index-as="colIndex">
<th>
<div>++</div>
<div>{{colIndex}}</div>
<div>--</div>
<div>{{col.title}}</div>
<div>++</div>
</th>
</template>
</tr>
</table>
Checking the result with the DOM explorer in IE10, I can see that no the data binding is not replacing {{colIndex}} and {{col.title}}.
If I do remove the <table> and </table> tags, the data binding is OK. Anybody faced the same issue ? Any workaround to mention ?