AEM 6.3 SP1 RTE Issue | Community
Skip to main content
This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by sugram13

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.

12 replies

nandak11733306
New Participant
January 30, 2018

Hi,

AEM CFP 6.3.1.2 fixes this issue.

nandak11733306
New Participant
January 30, 2018

Thanks.

sugram13Author
New Participant
January 30, 2018

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.

nandak11733306
New Participant
January 30, 2018

Will you be able to share the external js file

sugram13Author
New Participant
January 30, 2018

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

nandak11733306
New Participant
January 30, 2018

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

sugram13Author
New Participant
January 30, 2018

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.

nandak11733306
New Participant
January 30, 2018

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."

smacdonald2008
New Participant
January 8, 2018

Thanks for posting the solution.

sugram13AuthorAccepted solution
New Participant
January 8, 2018

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.