List of usage examples for com.liferay.portal.kernel.editor.configuration EditorOptions getDynamicAttributes
public Map<String, Object> getDynamicAttributes()
From source file:com.liferay.frontend.editor.alloyeditor.web.editor.configuration.AlloyEditorCreoleOptionsContributor.java
License:Open Source License
@Override public void populateEditorOptions(EditorOptions editorOptions, Map<String, Object> inputEditorTaglibAttributes, ThemeDisplay themeDisplay, RequestBackedPortletURLFactory requestBackedPortletURLFactory) { Map<String, Object> dynamicAttributes = editorOptions.getDynamicAttributes(); dynamicAttributes.put("useCustomDataProcessor", Boolean.TRUE); }
From source file:com.liferay.frontend.editor.ckeditor.web.editor.configuration.CKEditorOptionsContributor.java
License:Open Source License
@Override public void populateEditorOptions(EditorOptions editorOptions, Map<String, Object> inputEditorTaglibAttributes, ThemeDisplay themeDisplay, RequestBackedPortletURLFactory requestBackedPortletURLFactory) { Map<String, Object> dynamicAttributes = editorOptions.getDynamicAttributes(); dynamicAttributes.put("useCustomDataProcessor", Boolean.FALSE); }