Skip to content Skip to sidebar Skip to footer

Disable Tinymce Text Editor Via Jquery

I ahave multiple Tiny MCE editors which I am trying to disable editing on. I have tried multiple variations of: if(@Model.hasRegular.ToString().ToLower()) { tiny

Solution 1:

You have a typo in your disable code:

tinymce.get('#rte').getBody().setAttribute('contenteditable', false);

This line must be:

tinyMCE.get('rte').getBody().setAttribute('contenteditable', false);

So remove the # symbol.

Because you already used setMode you can do:

tinyMCE.get('rte').setMode('readonly');

or

tinyMCE.get('rte').setMode('code');

Snippet (fiddle: HERE):

$(function () {
  $('#nonAdmin').on('change', function(e) {
    tinyMCE.get('rte').getBody().setAttribute('contenteditable', !this.checked);
  });


  tinymce.init({
    selector: '#rte',
    toolbar: 'bold italic underline',
    height: '200px',
    width: '420px',
    elementpath: false,
    menubar: false,
    content_style: "div {border: 50px solid red;}",

    setup: function (ed) {
      ed.on('init', function () {
        this.getDoc().body.style.fontSize = '16px';
        this.getDoc().body.style.fontFamily = 'Helvetica';
        //disables editing for non adminsif ($('#nonAdmin').prop('checked')) {
          this.setMode('readonly');
        }

      });
    }
  });
});
<scriptsrc="https://code.jquery.com/jquery-1.12.4.min.js"></script><scriptsrc="https://cdnjs.cloudflare.com/ajax/libs/tinymce/4.4.1/tinymce.min.js"type="text/javascript"></script><scriptsrc="https://cdnjs.cloudflare.com/ajax/libs/tinymce/4.4.1/jquery.tinymce.min.js"type="text/javascript"></script><h1>TinyMCE Quick Start Guide</h1><formmethod="post">
    Disable: <inputtype="checkbox"id="nonAdmin"><textareaid="rte">Hello, World!</textarea></form>

Solution 2:

Your call to tinymce.get() is incorrect.

The API for get (https://www.tinymce.com/docs/api/tinymce/root_tinymce/#get) states:

Returns a editor instance by id.: get(id:String):tinymce.Editor

Parameters: id (String) - Editor instance id or index to return.

This is not a jQuery API call so your call:

tinymce.get('#rteSmall')

...should likely be...

tinymce.get('rteSmall')

Solution 3:

TinyMCE(latest version) text editor disable with some style on document ready.

    $(function () {
        tinymce.init({
                            selector: '#textEditor',
                            plugins: "advlist lists table paste textcolor colorpicker tabfocus link preview",
                            toolbar: "table fontsizeselect bold italic underline forecolor backcolor bullist numlist link preview code", imagetools_toolbar: "rotateleft rotateright | flipv fliph | editimage",
                            menubar: false,
                            toolbar_items_size: 'large',
                            min_height: 500,
                            max_height: 800,
                            convert_newlines_to_brs: false,
                            statusbar: false,
                            relative_urls: false,
                            remove_script_host: false,
                            language: 'en',
        
                        });
                        
                //controls disable inside sections
                tinyMCE.get('textEditor').setMode('readonly');  // disable
                setTimeout(function () {
                    $(".tox .tox-edit-area__iframe, .tox- 
                    toolbar__primary").css("background", "#eee");
                    $(".tox-tinymce").css("border", "1px solid #eee");

                }, 1000);
        });



               //if you want to enable it again, using your own button
                  $(".editFormControls").on('click', function () {
                  $(".sections form").find(".updateControl").show();
               });

Post a Comment for "Disable Tinymce Text Editor Via Jquery"