CKEDITOR options

by 2 replies
3
Anyone know how to disable CKEDITOR function options? I would like to reduce it to a more simple editor. I know that the options are plug in based but Im not sure where to look. I have tried Google with little luck.

A tutorial link or a brief description of the process would be fantastic. Thanks for reading.
#programming #ckeditor #options
  • Banned
    [DELETED]
    • [1] reply
    • Looking to change the toolbar: I have almost gotten what I want with this, but I need to figure out how enable spell checker.

      Code:
      <script type='text/javascript'>
                                        CKEDITOR.replace( 'Description',
                                                                      {
                                                                         toolbar :
                                                                                  [
                                                                                     { name: 'basicstyles', items : [ 'Bold','Italic' ] },
                                                                                     { name: 'paragraph', items : [ 'NumberedList','BulletedList' ] },
                                                                                     { name: 'tools', items : [ 'Maximize','-','About' ] }
                                                                                  ]
                                                                      });
                                      </script>
  • This is solved .. in case someone has a similar problem the code I was looking for was:

    Code:
    CKEDITOR.replace( 'Description',
                                                                    {
                                                                       toolbar :
                                                                                [
                                                                                   { name: 'basicstyles', items : [ 'Bold','Italic' ] },
                                                                                   { name: 'editing', items : [ 'Find','Replace','-','SelectAll','-','Scayt' ] },
                                                                             { name: 'paragraph', items : [ 'NumberedList','BulletedList' ] },
                                                                                   { name: 'tools', items : [ '-','About' ] }
                                                                                ]
                                                                    });

Next Topics on Trending Feed

  • 3

    Anyone know how to disable CKEDITOR function options? I would like to reduce it to a more simple editor. I know that the options are plug in based but Im not sure where to look. I have tried Google with little luck. A tutorial link or a brief description of the process would be fantastic. Thanks for reading.