I am using jQuery to open a dialog window with a textarea transformed into an instance of CKEditor. I\'m using the jQuery adapter provided by the CKEditor team but when the
I solved this by simply adding zIndex=-1 in the jQuery UI Dialog constructor like so
$('#modalWindow').dialog({ autoOpen: false, modal: true, zIndex : -1});