Problem with CKEditor in modal Bootstrap

1

I'm having trouble viewing windows that are opened by CKEditor, called from a Bootstrap modal. They, the windows, open. But only behind the modal. Can anyone help ??

    
asked by anonymous 18.05.2015 / 06:55

1 answer

1

I found the solution in the jQuery forums. Here's the solution and the source link:

Open the 'config.js' file of CKEditor it looks something like this:

CKEDITOR.editorConfig = function( config ) {
}

Then, paste the line down, between the keys {} :

config.baseFloatZIndex = 90000;

Solved! At least with me it worked out right.

    
18.05.2015 / 06:55