Thanks for sharing!
You might upgrade the initialization code to
if (Array.isArray(options.editorOptions.toolbar)) {
options.editorOptions.toolbar[4].items.push("image");
}
else {
options.editorOptions.toolbar +=" image";
}
to support a toolbar of type "Full".
I did research too but the only way I could find was to create a process and remove _apex_session before saving it to the database.
declare
l_apex_session varchar2(80);
begin
l_apex_session := '?_apex_session=' || :APP_ID || ',' || :APP_SESSION;
:P2_CONTENT := replace(:P2_CONTENT, l_apex_session, '');
end;
Yuri “Jvs”
APEX
Hi, Sorry, but I didn't understand what "be sure to replace 'REPLACE_BY_YOUR_ENDPOINT' with the actual endpoint URL" means. I will be very grateful if you explain to me. Full URL of RESTfull service module? xxx_oracle.com/ords/YYY_app/tinymce ? Thanks