angular-ui / ui-tinymce

AngularUI wrapper for TinyMCE
MIT License
488 stars 371 forks source link

some custom options do not work #329

Open yilujun100 opened 7 years ago

yilujun100 commented 7 years ago

in my custom options some do not work such as: bullist numlist image forecolor backcolor this is my options: image this is view: image

tungtouch commented 7 years ago

Same

ershwetabansal commented 7 years ago

I am not sure if you are aware of this but you will have to add tinymce plugins to add some of the features of tinymce. It has nothing to do with angular directive. For bullist and numlist, advlist is the plugin name. I will recommend you to go through the tinymce documentation for more information and advanced features.

akagane99 commented 6 years ago

sample code

tinymce.init({
      selector:'.advance-textarea',
      plugins: ["lists advlist"],
      toolbar: [
        'bold italic | link image | alignleft aligncenter alignright | bullist numlist outdent indent',
      ],
      theme: 'modern',
      menubar: false
    });

link

https://github.com/tinymce/tinymce/issues/3342 https://community.tinymce.com/communityQuestion?id=90661000000If5QAAS https://www.tinymce.com/docs/advanced/editor-control-identifiers/#toolbarcontrols