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 .