I'm able to add elements using Polymer.dom(parentElement).appendChild(childElement), but I'm not able to remove them as Polymer.dom(parentElement).removeChild is not a valid function.
We have the same issue that the removeChild has to be called via JSNI though it should be available on the Polymer.DomApi.
(It would be good if all method can be accessed via that mentioned JsType)
I'm able to add elements using Polymer.dom(parentElement).appendChild(childElement), but I'm not able to remove them as Polymer.dom(parentElement).removeChild is not a valid function.
Am I missing something?