Expand my Community achievements bar.

SOLVED

AEM6.4.1.0: RTE plugin options not coming (full screen mode) while using hybrid multiple in-place editors

Avatar

Level 2

Hi Team,

We are in process of migrating our applications from AEM6.2 to AEM6.4.1.0. We are using RTE plugin with hybrid multiple in-place editors and we found that All RTE plugin options like superscript,subscript,misctools are not coming in full screen mode (When using editor mode as text, its working). Could you please help us on this.

_cq_editConfig.xml

<?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" xmlns:nt="http://www.jcp.org/jcr/nt/1.0"

    cq:dialogMode="floating"

    cq:disableTargeting="{Boolean}true"

    cq:emptyText="Drag components or assets here"

    cq:inherit="{Boolean}false"

    cq:layout="rollover"

    jcr:primaryType="cq:EditConfig">

    <cq:listeners

        jcr:primaryType="cq:EditListenersConfig"

        afteredit="REFRESH_PAGE"/>

    <cq:inplaceEditing

        jcr:primaryType="cq:InplaceEditingConfig"

        active="{Boolean}true"

        configPath="../../dialog/items/tabs/items/TextItem/items/text"

        editorType="hybrid"

        title="cq:inplaceEditing">

        <cq:childEditors jcr:primaryType="nt:unstructured">

            <image

                jcr:primaryType="cq:ChildEditorConfig"

                title="Image"

                type="image"/>

            <cardImage

                jcr:primaryType="cq:ChildEditorConfig"

                title="Card Image"

                type="image"/>

            <mobileCardImage

                jcr:primaryType="cq:ChildEditorConfig"

                title="Mobile Card Image"

                type="image"/>

            <text

                jcr:primaryType="cq:ChildEditorConfig"

                title="Text"

                type="text"/>

        </cq:childEditors>

    </cq:inplaceEditing>

    <cq:dropTargets jcr:primaryType="nt:unstructured">

        <image

            jcr:primaryType="cq:DropTargetConfig"

            accept="[image/.*]"

            groups="[media]"

            propertyName="./image/fileReference">

            <parameters

                jcr:primaryType="nt:unstructured"

                sling:resourceType="appname/components/content/articles/article"

                imageCrop=""

                imageMap=""

                imageRotate=""/>

        </image>

        <cardImage

            jcr:primaryType="cq:DropTargetConfig"

            accept="[image/.*]"

            groups="[media]"

            propertyName="./cardImage/fileReference"/>

        <mobileCardImage

            jcr:primaryType="cq:DropTargetConfig"

            accept="[image/.*]"

            groups="[media]"

            propertyName="./mobileCardImage/fileReference"/>

    </cq:dropTargets>

</jcr:root>

dialog.xml:

<?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:Dialog"

    activeTab="0"

    allowBlank="{Boolean}false"

    disabled="{Boolean}false"

    fileName="dialog.xml"

    hideLabel="{Boolean}false"

    title="Article"

    xtype="dialog">

    <items jcr:primaryType="cq:WidgetCollection">

        <tabs jcr:primaryType="cq:TabPanel">

            <items jcr:primaryType="cq:WidgetCollection">

                <TextItem

                    jcr:primaryType="cq:Widget"

                    title="Article Copy">

                    <items jcr:primaryType="cq:WidgetCollection">

                        <text

                            jcr:primaryType="cq:Widget"

                            allowBlank="{Boolean}true"

                            disabled="{Boolean}false"

                            fieldLabel="Text"

                            hideLabel="{Boolean}false"

                            name="./text"

                            xtype="richtext">

                            <rtePlugins jcr:primaryType="nt:unstructured">

                                <edit

                                    jcr:primaryType="nt:unstructured"

                                    defaultPasteMode="wordhtml"

                                    features="[cut,copy,paste-default,paste-plaintext,paste-wordhtml]"/>

                                <format

                                    jcr:primaryType="nt:unstructured"

                                    features="[bold,italic,underline]"/>

                                <image

                                    jcr:primaryType="nt:unstructured"

                                    features="[image]"/>

                                <justify

                                    jcr:primaryType="nt:unstructured"

                                    features="[justifyleft,justifycenter,justifyright]"/>

                                <links

                                    jcr:primaryType="nt:unstructured"

                                    features="[modifylink,unlink,anchor]"/>

                                <lists

                                    jcr:primaryType="nt:unstructured"

                                    features="[ordered,unordered,indent,outdent]"/>

                                <misctools

                                    jcr:primaryType="nt:unstructured"

                                    features="[specialchars,sourceedit]"/>

                                <paraformat

                                    jcr:primaryType="nt:unstructured"

                                    features="*">

                                    <formats jcr:primaryType="cq:WidgetCollection">

                                        <format0

                                            jcr:primaryType="nt:unstructured"

                                            description="Paragraph"

                                            tag="p"/>

                                        <format1

                                            jcr:primaryType="nt:unstructured"

                                            description="Blockquote"

                                            tag="blockquote"/>

                                        <format2

                                            jcr:primaryType="nt:unstructured"

                                            description="Heading 2"

                                            tag="h2"/>

                                        <format3

                                            jcr:primaryType="nt:unstructured"

                                            description="Heading 3"

                                            tag="h3"/>

                                        <format4

                                            jcr:primaryType="nt:unstructured"

                                            description="Heading 4"

                                            tag="h4"/>

                                        <format5

                                            jcr:primaryType="nt:unstructured"

                                            description="Heading 5"

                                            tag="h5"/>

                                        <format6

                                            jcr:primaryType="nt:unstructured"

                                            description="Heading 6"

                                            tag="h6"/>

                                    </formats>

                                </paraformat>

                                <styles

                                    jcr:primaryType="nt:unstructured"

                                    features="*">

                                    <styles jcr:primaryType="cq:WidgetCollection">

                                        <style0

                                            jcr:primaryType="nt:unstructured"

                                            cssName="jumbotron-text"

                                            text="Pull quote text wrapper"/>

                                        <style1

                                            jcr:primaryType="nt:unstructured"

                                            cssName="grey-jumbo-txt"

                                            text="Pull quote text with Grey wrapper"/>

                                        <style2

                                            jcr:primaryType="nt:unstructured"

                                            cssName="article-small-heading"

                                            text="Article blue text"/>

                                    </styles>

                                </styles>

                                <subsuperscript

                                    jcr:primaryType="nt:unstructured"

                                    features="[subscript,superscript]"/>

                                <table

                                    jcr:primaryType="nt:unstructured"

                                    features="[table,removetable,insertrow,removerow,insertcolumn,removecolumn,cellprops,mergecells,splitcell,selectrow,selectcolumns]"/>

                                <undo

                                    jcr:primaryType="nt:unstructured"

                                    features="[undo,redo]"

                                    maxUndoSteps="50"/>

                                <experience-aem

                                    jcr:primaryType="nt:unstructured"

                                    features="[touchuiinsertimage]"/>

                            </rtePlugins>

                        </text>

                        <title

                            jcr:primaryType="cq:Widget"

                            allowBlank="{Boolean}false"

                            disabled="{Boolean}false"

                            fieldLabel="Title"

                            hideLabel="{Boolean}false"

                            name="./title"

                            xtype="textfield"/>

                        <summaryText

                            jcr:primaryType="cq:Widget"

                            allowBlank="{Boolean}true"

                            disabled="{Boolean}false"

                            fieldDescription="Used in article card form of the content."

                            fieldLabel="Summary Text"

                            hideLabel="{Boolean}false"

                            maxlength="80"

                            name="./summaryText"

                            xtype="textfield"/>

                        <timeToread

                            jcr:primaryType="cq:Widget"

                            allowBlank="{Boolean}false"

                            disabled="{Boolean}false"

                            fieldDescription="Enter the (%timetoread%) token along with the label. (Ex:%timetoread%-Minute Read). The time to read placeholder/token (%timetoread%) will be populated by the system with the actual calculated time to read a article."

                            fieldLabel="Time to read label"

                            hideLabel="{Boolean}false"

                            name="./timeToread"

                            xtype="textfield"/>

                    </items>

                </TextItem>

                <DisplayOptions

                    jcr:primaryType="cq:Widget"

                    title="Display Options">

                    <items jcr:primaryType="cq:WidgetCollection"/>

                </DisplayOptions>

                <Images

                    jcr:primaryType="cq:Widget"

                    title="Images">

                    <items jcr:primaryType="cq:WidgetCollection">

                        <image

                            jcr:primaryType="cq:Widget"

                            allowBlank="{Boolean}true"

                            allowFileNameEditing="{Boolean}true"

                            allowFileReference="{Boolean}true"

                            allowUpload="{Boolean}false"

                            ddAccept="*"

                            disabled="{Boolean}false"

                            fieldDescription="Image shown at the top of the artifact."

                            fieldLabel="Artifact Image"

                            fileNameParameter="./image/file"

                            fileReferenceParameter="./image/fileReference"

                            hideLabel="{Boolean}false"

                            mimeTypes="*.*"

                            mimeTypesDescription="All files"

                            name="./image/file"

                            sizeLimit="0"

                            xtype="html5smartfile"/>

                        <cardImage

                            jcr:primaryType="cq:Widget"

                            allowBlank="{Boolean}true"

                            allowFileNameEditing="{Boolean}true"

                            allowFileReference="{Boolean}true"

                            allowUpload="{Boolean}false"

                            ddAccept="*"

                            disabled="{Boolean}false"

                            fieldDescription="Image shown in the card view of the article. For Article Card &amp; Event Card use image resolution of 265x340 and 310x185 respectively."

                            fieldLabel="Card Image"

                            fileNameParameter="./cardImage/fileName"

                            fileReferenceParameter="./cardImage/fileReference"

                            hideLabel="{Boolean}false"

                            mimeTypes="*.*"

                            mimeTypesDescription="All files"

                            name="./cardImage/file"

                            sizeLimit="0"

                            xtype="html5smartfile"/>

                        <mobileCardImage

                            jcr:primaryType="cq:Widget"

                            allowBlank="{Boolean}true"

                            allowFileNameEditing="{Boolean}true"

                            allowFileReference="{Boolean}true"

                            allowUpload="{Boolean}false"

                            ddAccept="*"

                            disabled="{Boolean}false"

                            fieldDescription="Image shown in mobile device for the card view of the article. For Article Card &amp; Event Card use image resolution of 283x175 and 310x185 respectively."

                            fieldLabel="Mobile Card Image"

                            fileNameParameter="./mobileCardImage/fileName"

                            fileReferenceParameter="./mobileCardImage/fileReference"

                            hideLabel="{Boolean}false"

                            mimeTypes="*.*"

                            mimeTypesDescription="All files"

                            name="./mobileCardImage/file"

                            sizeLimit="0"

                            xtype="html5smartfile"/>

                    </items>

                </Images>

                <Metadata

                    jcr:primaryType="cq:Widget"

                    title="Metadata">

                    <items jcr:primaryType="cq:WidgetCollection">

                        <articleDate

                            jcr:primaryType="cq:Widget"

                            allowBlank="{Boolean}false"

                            disabled="{Boolean}false"

                            fieldLabel="Article Date"

                            format="m/d/Y"

                            hideLabel="{Boolean}false"

                            name="./articleDate"

                            showToday="{Boolean}true"

                            startDay="0"

                            type="date"

                            xtype="datefield"/>

                        <author

                            jcr:primaryType="cq:Widget"

                            allowBlank="{Boolean}true"

                            disabled="{Boolean}false"

                            fieldLabel="Author"

                            hideLabel="{Boolean}false"

                            name="./author"

                            xtype="textfield"/>

                        <expirationDate

                            jcr:primaryType="cq:Widget"

                            allowBlank="{Boolean}true"

                            disabled="{Boolean}false"

                            fieldDescription="Enter a value if the article should no longer be viewable after a certain date."

                            fieldLabel="Expiration Date"

                            format="m/d/Y"

                            hideLabel="{Boolean}false"

                            name="./expirationDate"

                            showToday="{Boolean}true"

                            startDay="0"

                            type="datetime"

                            xtype="datefield"/>

                        <visibleTags

                            jcr:primaryType="cq:Widget"

                            allowBlank="{Boolean}true"

                            disabled="{Boolean}false"

                            displayTitles="{Boolean}false"

                            fieldLabel="Visible Tags"

                            hideLabel="{Boolean}false"

                            name="./visibletags/cq:tags"

                            xtype="tags"/>

                        <hiddenTags

                            jcr:primaryType="cq:Widget"

                            allowBlank="{Boolean}true"

                            disabled="{Boolean}false"

                            displayTitles="{Boolean}false"

                            fieldDescription="These tage will be used for searching, but will not be displayed."

                            fieldLabel="Hidden Tags"

                            hideLabel="{Boolean}false"

                            name="./hiddentags/cq:tags"

                            xtype="tags"/>

                        <pdfUrl

                            jcr:primaryType="cq:Widget"

                            allowBlank="{Boolean}true"

                            disabled="{Boolean}false"

                            escapeAmp="{Boolean}false"

                            fieldLabel="PDF download URL"

                            hideLabel="{Boolean}false"

                            hideTrigger="{Boolean}false"

                            name="./pdfUrl"

                            parBrowse="{Boolean}false"

                            rootPath="/"

                            rootTitle="Websites"

                            showTitleInTree="{Boolean}true"

                            xtype="pathfield"/>

                        <pdfIconText

                            jcr:primaryType="cq:Widget"

                            allowBlank="{Boolean}true"

                            disabled="{Boolean}false"

                            fieldLabel="PDF Icon Text"

                            hideLabel="{Boolean}false"

                            name="./pdfIconText"

                            xtype="richtext">

                            <rtePlugins jcr:primaryType="nt:unstructured">

                                <format

                                    jcr:primaryType="nt:unstructured"

                                    features="[bold,italic,underline]"/>

                                <image

                                    jcr:primaryType="nt:unstructured"

                                    features="[image]"/>

                                <justify

                                    jcr:primaryType="nt:unstructured"

                                    features="[justifyleft,justifycenter,justifyright]"/>

                                <links

                                    jcr:primaryType="nt:unstructured"

                                    features="[modifylink,unlink,anchor]"/>

                                <lists

                                    jcr:primaryType="nt:unstructured"

                                    features="[ordered,unordered,indent,outdent]"/>

                                <misctools

                                    jcr:primaryType="nt:unstructured"

                                    features="[specialchars,sourceedit]"/>

                                <subsuperscript

                                    jcr:primaryType="nt:unstructured"

                                    features="[subscript,superscript]"/>

                                <table

                                    jcr:primaryType="nt:unstructured"

                                    features="[table,removetable,insertrow,removerow,insertcolumn,removecolumn,cellprops,mergecells,splitcell,selectrow,selectcolumns]"/>

                            </rtePlugins>

                        </pdfIconText>

                        <contentType

                            jcr:primaryType="cq:Widget"

                            allowBlank="{Boolean}true"

                            disabled="{Boolean}false"

                            displayTitles="{Boolean}false"

                            fieldLabel="Content Type"

                            hideLabel="{Boolean}false"

                            name="./contentType"

                            xtype="tags"/>

                    </items>

                </Metadata>

                <VideoDetails

                    jcr:primaryType="cq:Widget"

                    title="Video Details">

                    <items jcr:primaryType="cq:WidgetCollection">

                        <videoURL

                            jcr:primaryType="cq:Widget"

                            allowBlank="{Boolean}true"

                            disabled="{Boolean}false"

                            fieldLabel="Youtube Video ID/URL"

                            hideLabel="{Boolean}false"

                            name="./videoURL"

                            xtype="textfield"/>

                        <timeToView

                            jcr:primaryType="cq:Widget"

                            disabled="{Boolean}false"

                            fieldDescription="Enter the time to view video label along with the duration to view a video (Ex: 8-Minute Video)."

                            fieldLabel="Time to view label"

                            hideLabel="{Boolean}false"

                            name="./timeToWatch"

                            xtype="textfield"/>

                    </items>

                </VideoDetails>

            </items>

        </tabs>

    </items>

</jcr:root>

Thanks

Seran

1 Accepted Solution

Avatar

Correct answer by
Employee
1 Reply

Avatar

Correct answer by
Employee