In Polymer 0.5 I used the templateElement.createInstance(dataToBind) to create a new instance of a template and bind the data object to the new instance:
var instance = templateElement.createInstance(dataToBind);
container.appendChild(instance);
In Polymer.Base I found the instanceTemplate function to create a new instance of the template, but this function does not bind the data to the instance. Is there a way to achieve this in Polymer 1.0 ?