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.