You need to be logged in to post in the forum - Log In

An active JCE Pro Subscription is required to post in the forum - Buy a Subscription

Support is currently Online

Official support hours
Monday to Friday
09:00 - 17:00 Europe/London (BST)

#106855 Include JCE in a extnernal extension (Convert Forms)

Posted in ‘Editor’
This is a public ticket

Everybody will be able to see its contents. Do not include usernames, passwords or any other sensitive information.

Latest post by smartweb on Wednesday, 17 February 2021 12:22 GMT

smartweb
Include JCE in a extnernal extension (Convert Forms) Hi, i use the form extension 'Convert Forms' (https://www.tassos.gr/joomla-extensions/convert-forms). Unfortuntely, this extension does not offer an HTML editor, so I asked the developer how I could implement this by myself. He gave me the following solution to include TinyMCE:

<s-cript src="https://cdn.tiny.cloud/1/no-api-key/tinymce/5/tinymce.min.js" referrerpolicy="origin"></s-cript>
<s-cript type="text/javascript">
tinymce.init({
    selector: 'textarea.editor',
    init_instance_callback: function(editor) {
        editor.on('blur', function() {
            tinymce.triggerSave();
        });
    }
});
</s-cript>
However, I would prefer to integrate JCE, wich is my standard editor in Joomla. Do you think there is a way to integrate JCE in a similar way? Greetings Stef

Ryan
However, I would prefer to integrate JCE, wich is my standard editor in Joomla. Do you think there is a way to integrate JCE in a similar way?


Unfortunately not, as JCE requires more than adding some javascript.

i use the form extension 'Convert Forms' (https://www.tassos.gr/joomla-extensions/convert-forms). Unfortuntely, this extension does not offer an HTML editor,


It's odd that a Joomla extension does not provide support for Joomla editors, including the default editor. It might be a better use of your time convincing the developer to include the functionality, so any editor can be used.

Ryan Demmer

Lead Developer / CEO / CTO

Just because you're not paranoid doesn't mean everybody isn't out to get you.

smartweb
Thank you, Ryan. I will contact the developer of 'Convert Forms' again.