Ok I identified the issue I was having with NOT having any of the configura

Ok I identified the issue I was having with NOT having any of the configuration settings being applied.

We are hiding the editor via :

tinyMce.setVisible(false);

We then change the visibility property from a Yes/No radio group event:

group.addValueChangeListener(event → {
if(event.getValue().equalsIgnoreCase(“Yes”)){
tinyMce.setVisible(true);
} else {
tinyMce.setVisible(false);
}

So if I just display the editor as visiable and then toggle, then all the configuration works fine. But if I load the page with the editor hidden then NONE of the configuration loads or is applied.

Feels like a bug, but maybe I’m not setting something correctly.

Any insight would be greatly apprectiated.

Bummed about the branding as we would REALLY like one implementation of the edtor to have nothing to click on .

Is it possible for me at least have someone acknoledge that this has been seen and being looked at? Understand there might not be an answer but would be nice if I knew that it was in the queue to be reviewed.

Thanks