Polymer data binding doesn't work when assigning markup to innerHTML that contains attribute data binding
问题 What is the simplest way to create data bindings to attributes, in Polymer, when working with innerHTML? This is an example of what i mean - http://jsfiddle.net/ry6og1q9/2/ <paper-input inputValue="{{foo}}" label="static foo"></paper-input> "staticFoo" paper-input is data bound to with {{foo}} - a two way data binding. var c = this.$.dynamicFooPlaceHolder; c.innerHTML = ''; var e = document.createElement('div'); e.innerHTML = '<paper-input id="dynamicFoo" inputValue="{{foo}}" label="dynamic