My FCKEditor is inside a ModalPopupExtender. The editor works fine except for anything (e.g. image editing, links, etc) that requires a modal dialog. This modal dialog appears behind the modalpopupextender window. This only occurs in Safari.
Any advice on this would be really appreciated as it's a big problem and it appears we are not the only ones!
[Edit - added below text]:
I have investigated and I think it might be down to z-indexes - ModalPoupExtender uses 100001, which is higher than the value FCKEditor appears to give to its modal dialogs - 11001. Is there any way I can modify the z-index on the FCK modal dialogs?
Any advice on this would be really appreciated as it's a big problem and it appears we are not the only ones!
[Edit - added below text]:
I have investigated and I think it might be down to z-indexes - ModalPoupExtender uses 100001, which is higher than the value FCKEditor appears to give to its modal dialogs - 11001. Is there any way I can modify the z-index on the FCK modal dialogs?
Re: Dialog windows inside ModalPopupExtender in Safari
I've fixed this now, so thought I'd post for anyone who has this issue in future - just change the line in fckconfig.js:
FCKConfig.FloatingPanelsZIndex = 10000
to
FCKConfig.FloatingPanelsZIndex = 110000
i.e. greater than the z-index for the ModalPopupExtender.
Problem solved!
Re: Dialog windows inside ModalPopupExtender in Safari
Re: Dialog windows inside ModalPopupExtender in Safari
CKEDITOR.editorConfig = function(config) {
config.baseFloatZIndex = 110000;
};