user2496018
user2496018

Reputation: 21

rte plugin for image not working in richtext in AEM 5.6

rte plugin for image not working in richtext in AEM 5.6

I am using the following code

{
    "xtype":"richtext",
    "id":"<%= id %>_text",
    "name":"text",
    "enableSourceEdit":true,
    "width":"100%",
    "rtePlugins": {
        "image": {
            "features":"*"
        },
        "misctools": {
            "features":["specialchars","sourceedit"]
        },
        "findreplace": {
            "features":["find","replace"]
        },
    },
}

For the given code snippet i am not able to add the misctools and find replace working properly but image plugin is not allowing drag and drop.

It would be really great help.

Upvotes: 2

Views: 1510

Answers (1)

AlleyGator
AlleyGator

Reputation: 1276

The Richtext image plugin and specialchars plugins seem to only be compatible with Mozilla Firefox on my system. If you're using Chrome or Safari it will be set up correctly but it won't work.

Curious if that fixes your issue.

Upvotes: 1

Related Questions