use of org.vaadin.pekka.WysiwygE in project furms by unity-idm.
the class SettingsView method connectionInfoRow.
private Component connectionInfoRow(Binder<SiteSettingsDto> binder) {
WysiwygE textArea = new WysiwygE();
textArea.setValueChangeMode(EAGER);
textArea.setPlaceholder(getTranslation("view.site-admin.settings.form.info.placeholder"));
binder.forField(textArea).bind(SiteSettingsDto::getConnectionInfo, SiteSettingsDto::setConnectionInfo);
return textArea;
}
Aggregations