Last active
March 1, 2023 19:49
-
-
Save briankasingli/1a7e3e12deaa2e076645b09d30039b46 to your computer and use it in GitHub Desktop.
AEM 6.4 RichText Editor - Enable all features, and disable inline full screen option; the inline fullscreen option causes too many problems.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<jcr:root xmlns:sling="http://sling.apache.org/jcr/sling/1.0" xmlns:cq="http://www.day.com/jcr/cq/1.0" xmlns:jcr="http://www.jcp.org/jcr/1.0" | |
jcr:primaryType="cq:Component" | |
jcr:title="Rich Text" | |
sling:resourceSuperType="core/wcm/components/text/v2/text" | |
componentGroup="General"/> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<jcr:root xmlns:sling="http://sling.apache.org/jcr/sling/1.0" xmlns:granite="http://www.adobe.com/jcr/granite/1.0" xmlns:cq="http://www.day.com/jcr/cq/1.0" xmlns:jcr="http://www.jcp.org/jcr/1.0" xmlns:nt="http://www.jcp.org/jcr/nt/1.0" | |
jcr:primaryType="nt:unstructured" | |
jcr:title="Text" | |
sling:resourceType="cq/gui/components/authoring/dialog"> | |
<content | |
jcr:primaryType="nt:unstructured" | |
sling:resourceType="granite/ui/components/coral/foundation/container"> | |
<items jcr:primaryType="nt:unstructured"> | |
<tabs | |
jcr:primaryType="nt:unstructured" | |
sling:resourceType="granite/ui/components/coral/foundation/tabs" | |
maximized="{Boolean}true"> | |
<items jcr:primaryType="nt:unstructured"> | |
<properties | |
jcr:primaryType="nt:unstructured" | |
jcr:title="Properties" | |
sling:resourceType="granite/ui/components/coral/foundation/container" | |
margin="{Boolean}true"> | |
<items jcr:primaryType="nt:unstructured"> | |
<columns | |
jcr:primaryType="nt:unstructured" | |
sling:resourceType="granite/ui/components/coral/foundation/fixedcolumns" | |
margin="{Boolean}true"> | |
<items jcr:primaryType="nt:unstructured"> | |
<column | |
granite:class="cq-RichText-FixedColumn-column" | |
jcr:primaryType="nt:unstructured" | |
sling:resourceType="granite/ui/components/coral/foundation/container"> | |
<items jcr:primaryType="nt:unstructured"> | |
<text | |
jcr:primaryType="nt:unstructured" | |
sling:resourceType="cq/gui/components/authoring/dialog/richtext" | |
name="./text" | |
useFixedInlineToolbar="{Boolean}true"> | |
<rtePlugins jcr:primaryType="nt:unstructured"> | |
<format | |
jcr:primaryType="nt:unstructured" | |
features="*"/> | |
<justify | |
jcr:primaryType="nt:unstructured" | |
features="*"/> | |
<lists | |
jcr:primaryType="nt:unstructured" | |
features="*"/> | |
<paraformat | |
jcr:primaryType="nt:unstructured" | |
features="*"/> | |
<links | |
jcr:primaryType="nt:unstructured" | |
features="*"/> | |
<image | |
jcr:primaryType="nt:unstructured" | |
features="*"/> | |
<findreplace | |
jcr:primaryType="nt:unstructured" | |
features="*"/> | |
<subsuperscript | |
jcr:primaryType="nt:unstructured" | |
features="*"/> | |
<spellcheck | |
jcr:primaryType="nt:unstructured" | |
features="*"/> | |
<misctools | |
jcr:primaryType="nt:unstructured" | |
features="*"> | |
<specialCharsConfig jcr:primaryType="nt:unstructured"> | |
<chars jcr:primaryType="nt:unstructured"> | |
<copyright | |
jcr:primaryType="nt:unstructured" | |
entity="&#169;"/> | |
<trademark | |
jcr:primaryType="nt:unstructured" | |
entity="&#8482;"/> | |
<registered | |
jcr:primaryType="nt:unstructured" | |
entity="&#174;"/> | |
<emDash | |
jcr:primaryType="nt:unstructured" | |
entity="&#8212;"/> | |
<pound | |
jcr:primaryType="nt:unstructured" | |
entity="&#163;"/> | |
<nbsp | |
jcr:primaryType="nt:unstructured" | |
entity="&#160;"/> | |
</chars> | |
</specialCharsConfig> | |
</misctools> | |
<styles | |
jcr:primaryType="nt:unstructured" | |
features="*"> | |
<styles jcr:primaryType="nt:unstructured"> | |
<plainSpan | |
jcr:primaryType="nt:unstructured" | |
cssName="defaultSpan" | |
text="Default (add span tag)"/> | |
<lead | |
jcr:primaryType="nt:unstructured" | |
cssName="lead" | |
text="Lead"/> | |
</styles> | |
</styles> | |
<table | |
jcr:primaryType="nt:unstructured" | |
features="*"/> | |
</rtePlugins> | |
<uiSettings jcr:primaryType="nt:unstructured"> | |
<cui jcr:primaryType="nt:unstructured"> | |
<inline | |
jcr:primaryType="nt:unstructured" | |
toolbar="[format#bold,format#italic,format#underline,#justify,#lists,subsuperscript#subscript,subsuperscript#superscript,links#modifylink,links#unlink,links#anchor,#image,findreplace#find,findreplace#replace,spellcheck#checktext,misctools#specialchars,misctools#sourceedit,#styles,#paraformat,table#table]"> | |
<popovers jcr:primaryType="nt:unstructured"> | |
<justify | |
jcr:primaryType="nt:unstructured" | |
items="[justify#justifyleft,justify#justifycenter,justify#justifyright]" | |
ref="justify"/> | |
<lists | |
jcr:primaryType="nt:unstructured" | |
items="[lists#unordered,lists#ordered,lists#outdent,lists#indent]" | |
ref="lists"/> | |
<paraformat | |
jcr:primaryType="nt:unstructured" | |
items="paraformat:getFormats:paraformat-pulldown" | |
ref="paraformat"/> | |
<styles | |
jcr:primaryType="nt:unstructured" | |
items="styles:getStyles:styles-pulldown" | |
ref="styles"/> | |
</popovers> | |
</inline> | |
<dialogFullScreen | |
jcr:primaryType="nt:unstructured" | |
toolbar="[format#bold,format#italic,format#underline,#justify,#lists,subsuperscript#subscript,subsuperscript#superscript,links#modifylink,links#unlink,links#anchor,#image,findreplace#find,findreplace#replace,spellcheck#checktext,misctools#specialchars,misctools#sourceedit,#styles,#paraformat,table#table]"> | |
<popovers jcr:primaryType="nt:unstructured"> | |
<paraformat | |
jcr:primaryType="nt:unstructured" | |
items="paraformat:getFormats:paraformat-pulldown" | |
ref="paraformat"/> | |
</popovers> | |
</dialogFullScreen> | |
<tableEditOptions | |
jcr:primaryType="nt:unstructured" | |
toolbar="[table#insertcolumn-before,table#insertcolumn-after,table#removecolumn,-,table#insertrow-before,table#insertrow-after,table#removerow,-,table#mergecells-right,table#mergecells-down,table#mergecells,table#splitcell-horizontal,table#splitcell-vertical,-,table#selectrow,table#selectcolumn,-,table#ensureparagraph,-,table#modifytableandcell,table#removetable,-,undo#undo,undo#redo,-,table#exitTableEditing,-]"/> | |
</cui> | |
</uiSettings> | |
</text> | |
</items> | |
</column> | |
</items> | |
</columns> | |
</items> | |
</properties> | |
</items> | |
</tabs> | |
</items> | |
</content> | |
</jcr:root> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<jcr:root xmlns:cq="http://www.day.com/jcr/cq/1.0" xmlns:jcr="http://www.jcp.org/jcr/1.0" xmlns:nt="http://www.jcp.org/jcr/nt/1.0" | |
jcr:primaryType="cq:EditConfig"> | |
<cq:inplaceEditing | |
jcr:primaryType="cq:InplaceEditingConfig" | |
active="{Boolean}true" | |
editorType="text"> | |
<config jcr:primaryType="nt:unstructured"> | |
<uiSettings jcr:primaryType="nt:unstructured"> | |
<cui jcr:primaryType="nt:unstructured"> | |
<inline | |
jcr:primaryType="nt:unstructured" | |
toolbar="[format#bold,format#italic,format#underline,#justify,#lists,links#modifylink,links#unlink,#paraformat,control#close,control#save]"/> | |
</cui> | |
</uiSettings> | |
</config> | |
</cq:inplaceEditing> | |
</jcr:root> |
Hello, can I ask where you store css files for styles - defaultSpan and lead?
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Enabling All Features of the Rich Text Editor for AEM 6.4; component is inheriting from the Adobe core components.