Been trying to get this working for a bit but seem to have run into a wall. I have gone and added a new field in the Notes module for using a WYSIWYG field for additional formatting. I am happy with the TinyMCE editor that it provides (was also experimenting with converting the default Description field into using the HTML editor), but I would like to add some TinyMCE plugins to the field, specifically the Lists plugin. After viewing the source code, it looks like the lists plugin is already installed in the app, but no matter what I try (adding plugin to SugarTinyMCE.php default plugins, etc.) it does not add it in. I am not sure if I am missing a simple step but I canât seem to find any reference of it on the forums aside from this post which is referencing the Email Template module which unfortunately does not help in this case.
Currently using SuiteCRM 8.2.1 deployed via Bitnamiâs helm chart, have root access to the backend. Even through many Repair and Rebuilds and cache clears for all of the changes, still no results. Perhaps in the future if there is an option to have config settings for TinyMCE available via config file(s) that would help further customize the application.
Thank you so much for the help, after a Quick Repair and Rebuild this was the solution to my problem! I am now able to see the bullet/number lists in the editor, also added in advlist to improve the functionality.
I have the same problem as rdavis11, except that Iâm adding a WYSIWYG field under Opportunities instead of Notes module. The TinyMCE editor looks very different and has a different toolbar. I searched high and low for the equivalent PHP and JS file to edit to insert bullist and numlist (which is what i need to add in) but I cannot find the right file. I hope you can give some advice to me, thanks!
Thanks for the quick response, but if config/services/ui/ui.yaml is indeed the right place to make the changes, it seems like itâs already configured for bullist and numlist as I can find the following within the YAML file:
Finally solved my own problem. abuzarfaris is right, config/services/ui/ui.yaml is the right place to change for WYSIWYG/TinyMCE Editors under Opportunities module.
The plugins section has to be changed to one line to make it work:
plugins: âadvlist autolink lists link image charmap print preview anchor searchreplace visualblocks code fullscreen insertdatetime media table paste code help wordcountâ
The previous dashed format did not allow the plugins to be loaded and that was why bulleted and numbered lists were not available.
Also, under toolbar, âformatselectâ has become âblocksâ and need to be replaced to make it work:
toolbar: âundo redo | blocks | bold italic backcolor | alignleft aligncenter alignright alignjustify | bullist numlist outdent indent | removeformat | helpâ
Hi @chancks , thank you very much for sharing your findings.
I have a question. Do you know if it is possible to duplicate the original ui.yaml file and modify it in a custom directory, instead of editing the original file directly?