Hi,
does anyone works with CK editor Addon?
I have a link with a title in it, but the ck editor removes it:
Constants.Toolbar[] toolbar = new Constants.Toolbar[]{Constants.Toolbar.heading, Constants.Toolbar.fontFamily, Constants.Toolbar.fontSize, Constants.Toolbar.fontColor, Constants.Toolbar.bold, Constants.Toolbar.italic, Constants.Toolbar.underline, Constants.Toolbar.bulletedList, Constants.Toolbar.horizontalLine, Constants.Toolbar.link, Constants.Toolbar.htmlEmbed, Constants.Toolbar.sourceEditing};
Config config = new Config();
config.setEditorToolBar(toolbar);
config.setUILanguage(Constants.Language.de);
classicEditor = new VaadinCKEditorBuilder().with(builder -> {
builder.editorData = product.getDescriptionLongDe() == null ? "---" : product.getDescriptionLongDe();
builder.editorType = Constants.EditorType.CLASSIC;
builder.theme = Constants.ThemeType.LIGHT;
builder.config = config;
}).createVaadinCKEditor();
The value is
<a href="https:xxx" title="Was ist das?">E-Automat</a>
but in editor i see
<a href="https:xxx">E-Automat</a>
i already tried adding generalHtml but it still eliminates the title