Hello -
I've been successfully calling ckeditor4 in a number of our applications in 5.9.1 for create pages: however, I'm running into a issue for ae pages and am curious if anyone else has run into this issue.
The issue is that when I add ckeditor in the tcl code for an ae page - the value is not passed to the editor. I've seen something like this when I was adding ckeditor on the adp page and fixed it by making sure the value was passed after ckeditor was initiated. I'm not sure how to address this in the tcl code and hope it is just a minor fix.
This is the code that I am currently using
{publish_body:richtext(richtext),optional
{value "$publish_body"}
{options {
editor ckeditor4
plugins {autogrow,codemirror,widget,lineutils,colordialog,dialog,fakeobjects,filebrowser,popup,iframedialog,balloonpanel,"..more plugins"}
customConfig {/resources/ckeditor/config.js}
skin {office2013,/resources/ckeditor/skins/office2013/}
}
}
}
Any suggestions are greatly appreciated.