Umbraco 7 TinyMCE - how to insert alpha & roman lists
Is there a way to get Umbraco 7 TinyMCE toolbar to use the same 'numbered list' button that is on the TinyMCE example page?... http://www.tinymce.com/tryit/basic.php
On the example above, the numbered list button has an arrow next to it where you can select Alpha, Greek & Roman lists. Is there a way to set this up in the U7 config or is there some code I can add to get this dropdown button to appear?
You'll need to enable the list plugin in /config/tinymceconfig.config file
under plugins
<plugin loadOnFrontend="true">lists</plugin>
cant recall if there was another settings to adjust in this file. But once done and restarted you'll have the list buttons become dropdown with options of roman,alpha etc.
Umbraco 7 TinyMCE - how to insert alpha & roman lists
Is there a way to get Umbraco 7 TinyMCE toolbar to use the same 'numbered list' button that is on the TinyMCE example page?... http://www.tinymce.com/tryit/basic.php
On the example above, the numbered list button has an arrow next to it where you can select Alpha, Greek & Roman lists. Is there a way to set this up in the U7 config or is there some code I can add to get this dropdown button to appear?
Hi jonok
You'll need to enable the list plugin in /config/tinymceconfig.config file
under plugins
<plugin loadOnFrontend="true">lists</plugin>
cant recall if there was another settings to adjust in this file. But once done and restarted you'll have the list buttons become dropdown with options of roman,alpha etc.
Hi Keilo - it looks like U7 has that plugin enabled by default, so I'm not sure what else I need to do to get the dropdown buttons to appear?
My bad, i meant to say
<plugin loadOnFrontend="true">advlist</plugin>
Cant recall if the advlist plugin was already shipped or I copied from original tinymce.. sorry, it has been sometime..
Thanks very much - that's working for me.
Glad to hear that
is working on a reply...