1

I am using the bootbox with a ck_editor inside when I select the special characters from the tool bar the window is disable. I have this function that will do the replace and it display fine just can't can access to that window. Is there a event for the SpecialChar that I can get the focus?

function prepCkeditor() {
    var editor = CKEDITOR.instances['txtAddCompany'];
    if (!editor) {
        CKEDITOR.replace('txtAddCompany', {
            enterMode: CKEDITOR.ENTER_BR,
            height: 35,
            entities: false,
            contentsCss: 'body {overflow:hidden;font-family:"Raleway", "Open Sans", sans-serif; font-size: 14px;color:#555;}',
            resize_enabled: false,
            toolbar:
                [
                    { name: 'tools', items: ['SpecialChar', '-', 'Source', '-', 'Maximize'] }
                ]
        });
    } 
}

Select special characters windows disable

Jefferson
  • 71
  • 3
  • 12
  • Your "special character" dialog isn't disabled, it just has a lower z-index than Bootstrap's modal uses. – Tieson T. Dec 12 '21 at 03:45

0 Answers0