Hi, im having difficulties to render this CKEditor on a Polymer Template. I

Hi, im having difficulties to render this CKEditor on a UI associated with a Polymer Template.
For Example:

@JsModule(“./src/test.js”)
public class TestTemplate extends PolymerTemplate {

@Id
private Div container;

public TestTemplate() {
    VaadinCKEditor ckEditor = new VaadinCKEditorBuilder().createVaadinCKEditor();
    container.add(ckEditor);

}

}

I Can only render on a component (like Div or Dialog). Is this a expected/normal behavior ?

–EDIT—
I detect another problem … it seems that setValue method is not working… when i call setValue method nothing happens on the editor.

Same issue.
setValue doesn’t work

Use updateValue after setValue, OR use doSetUpdate only.
The two methods are added from version 1.0.4
Thanks.

Thanks!

Hi Diogo,
It is normal as the component is not based on Polymer Template Api.