Expand my Community achievements bar.

Dive into Adobe Summit 2024! Explore curated list of AEM sessions & labs, register, connect with experts, ask questions, engage, and share insights. Don't miss the excitement.
SOLVED

AEM 6.3 SP1 RTE Issue

Avatar

Level 2

I am facing issue with the RTE in aem 6.3 plus SP1.
Hyerlinks are not working fine..any leads?

1 Accepted Solution

Avatar

Correct answer by
Level 2

I was having an accordian where I had multiple RTEs on slecting any random text and on clicking  hyperlinks it was automatically shifting the control to the last RTE.

PS:However I resolved the issue by using external js.

View solution in original post

12 Replies

Avatar

Level 10

Can you provide more information, I don't it will help anyone to understand the issue.

Screenshots or more detail description will be helpful

Avatar

Administrator

Can you check the error message in AEM error.log? Please share the Steps to reproduce it.

I have just tested it on AEM 6.3, it is working fine.

Please install this package:- Configuring Experience Manager Rich Text Editor Plugins in a Touch UI Component Dialog and confirm.



Kautuk Sahni

Avatar

Correct answer by
Level 2

I was having an accordian where I had multiple RTEs on slecting any random text and on clicking  hyperlinks it was automatically shifting the control to the last RTE.

PS:However I resolved the issue by using external js.

Avatar

Level 1

Is this issue resolved with AEM 6.3

"I was having an accordian where I had multiple RTEs on slecting any random text and on clicking  hyperlinks it was automatically shifting the control to the last RTE."

Avatar

Level 2

Yes.
the issue persisted in AEM 6.3 only.However solved now.
It had some issue with the UI.
It can be resolved by overriding the js for the dialog.

Avatar

Level 1

Are there any hot fixes or service packs that resolve this issue. I hope to try with SP1 or CFP 2.0

Avatar

Level 2

you can try it but as far as I remember they couldnot help me.
I had to write an external js.

Avatar

Level 1

Will you be able to share the external js file

Avatar

Level 2

Sure.
Following is the code snippet:

$(document).on("dialog-ready",function(){

    var originalEvent=Vent.prototype._executeBubbleListeners

Vent.prototype._executeBubbleListeners = function(event){

    if(event.type!="mousedown") {

  originalEvent(event);

    }

}

})

This shall work.Lemme know if it works.
you must handle the exceptions as well later for js.

Avatar

Level 1

Hi,

AEM CFP 6.3.1.2 fixes this issue.