Autocomplete plugin for RTE in CQ - aem

I want to customize the RTE in CQ. I will input some complex medical terminologies to the CRX through scaffolding. Whenever author writes an article they should be able to autocomplete these terminologies. I see that there is a Jquery plugging for autocomplete but how do I include this in my CQ RTE.
Thanks

Not sure on the previous versions of CQ but CQ 5.6 + uses Extjs 3.4.0 which provides ext js htmleditor may be you can try using that. There is very less documentation on creating custom plugins for autocomplete in RichTextEditor. Also not sure but I think you might not be able to use the jquery plugins for RTE since they are integrated for ext js plugins only. Here is the reference for html editor for extjs 3.4.0 http://docs.sencha.com/extjs/3.4.0/#!/api/Ext.form.HtmlEditor . Hope this helps.

Related

tinymce adding a context form to a custom plugin in wordpress

So after a lot of trial and error I managed to make a simple tinyMCE plugin that suits a project I'm working on , the plugin at the moment adds or removes a html tag from the slection , but now I want to add a Context Form similar to the link Context Form tinyMCE comes with but there is no clear documentation to do this with the wordpress plugin inside the tinymce.PluginManager . Anyone know how to add this using the tinymce functionaities (in Wordpress).

How to add RTE (Rich Text Edit) for the text area in TYPO3 backend module extension template

I have a TYPO3 backend module extension. I want to replace the text area with RTE in the template.
Well, you can configure this with CKeditor plugin. You can follow the step below to make this happen,
1) You can add the JQuery plugin from TYPO3 core here:
sysext/rte_ckeditor/Resources/Public/JavaScript/Contrib/ckeditor.js
2) Load the plugin in the backend module, you can use the below link as a reference.
See: Reference
3) Add custom JS file to write your custom JQuery script (Just like step 2)
4) In your custom JS, initialize CKEditor.
$( 'textarea.editor' ).ckeditor(); // this is your HTML field
See: Reference
Also, you can look at the official document for configuring this.
Hope this will help you!

Fluid with PhpStorm view helper can't be found

My PhpStorm IDE does not recognize the fluid view helper. Currently working with PhpStorm 2017.3.3
I installed the Fluid Plugin from sgalinski and added in the Schema and DTDs following xsd file https://fluidtypo3.org/schemas/fluid-master.xsd and linked it to following URI http://typo3.org/ns/TYPO3/CMS/Fluid/ViewHelpers
Does anyone know how I can fix this? It would be great when autocompletion would work for fluid html files
Try adding the Typo3 core as external library in your PhpStorm Projekt.
Have a look for these blog posts:
http://insight.helhum.io/post/85031122475/xml-schema-auto-completion-in-phpstorm
http://insight.helhum.io/post/130270697975/updated-fluid-schema-urls
You may also check out the PhpStorm Plugins - there is one available for FLUID.
https://www.sgalinski.de/typo3-produkte-webentwicklung/typo3-fluid-phpstorm-intellij/

Orchard Upload Documents w/TinyMCE

I know Orchard contains a built-in set of options for TinyMCE with uploading media, but is there an equivalent for just uploading standard documents that is similar so users can link to them in the editor?
Have you tried TinyMCE Deluxe?
http://gallery.orchardproject.net/List/Modules/Orchard.Module.TinyMceDeluxe
You can use any of the official pluggins
You can use TinyMceDeluxe, as mentioned, which lets you use TinyMCE plugins. Then, you can use a TinyMCE plugin to get the functionality you need. Here are some of the options that I'm aware of:
MCFileManager
TinyBrowser
Ajax file/image manager
PDW File Browser

tinymce dijit.editor

I have been using tinyMCE over dojo dijit.editor because tinyMCE wins out on functionality. Though I've just come across this: http://phphtmledit.com/dojo/ShowEditor.php?gclid=CPizxJzR3qQCFQpBbgodFidd9A
which, if I'm reading it correctly, claims to be a dojo editor but has all the functionality of tinyMCE.
So my question: are there more dijit.editor plugins out there? So far I've found these: http://docs.dojocampus.org/dojox/editor/plugins
http://docs.dojocampus.org/dijit/_editor/plugins
In particular, is there an image inserter plugin for dijit.editor?
There is an image uploading / inserting plugin - dojox.editor.plugins.UploadImage
The demo behind your link looks like a demo of the http://cutesoft.net/ WYSIWYG editor. (Found the link in the HTML source) You can always mail cutesoft and ask them if they build their editor on top of dojo...
As far as I know all the editor stuff in dojo is documented behind the links you already found and you can of course always write your own plugin.