この会話は、活動がないためロックされています。新しい投稿を作成してください。
この会話は、活動がないためロックされています。新しい投稿を作成してください。
I am facing issue with the RTE in aem 6.3 plus SP1.
Hyerlinks are not working fine..any leads?
解決済! 解決策の投稿を見る。
表示
返信
いいね!の合計
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.
表示
返信
いいね!の合計
Can you provide more information, I don't it will help anyone to understand the issue.
Screenshots or more detail description will be helpful
表示
返信
いいね!の合計
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.
表示
返信
いいね!の合計
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.
表示
返信
いいね!の合計
Thanks for posting the solution.
表示
返信
いいね!の合計
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."
表示
返信
いいね!の合計
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.
表示
返信
いいね!の合計
Are there any hot fixes or service packs that resolve this issue. I hope to try with SP1 or CFP 2.0
表示
返信
いいね!の合計
you can try it but as far as I remember they couldnot help me.
I had to write an external js.
表示
返信
いいね!の合計
Will you be able to share the external js file
表示
返信
いいね!の合計
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.
表示
返信
いいね!の合計
Thanks.
表示
返信
いいね!の合計
Hi,
AEM CFP 6.3.1.2 fixes this issue.
表示
返信
いいね!の合計