Remove tooltip from CKEditor for Mendix

0
I'm using the CKEditor on a page. When the mouse pointer hovers over the text area, a tooltip is displayed with text that is irrelevant to the user. How do I change or remove this?  
asked
3 answers
3

Hi Marcos,

This can easily be achieved by a small alteration to the widget. In the widget MPK, open the file 'CKEditorForMendix' and add the part I highlighted below: 'title: false' after line 239. Of course, do no forget to add a comma at the end of line 239 as well. 

For more details about the CK Editor, see:

https://docs.ckeditor.com/ckeditor4/docs/#!/api/CKEDITOR.config-cfg-title

answered
0

Either change the widget yourself or create an issue on github for this.

See https://github.com/mendix/CKEditorForMendix

For more information on widget development see https://docs.mendix.com/howto/custom-widget-development/

answered
0

What about changing the css and use somewhere display: none; ?

answered