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 ??
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 ??
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.