CKEditor instance in a jQuery dialog

后端 未结 11 1319
-上瘾入骨i
-上瘾入骨i 2021-01-03 01:03

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

11条回答
  •  無奈伤痛
    2021-01-03 01:48

    I solved this by simply adding zIndex=-1 in the jQuery UI Dialog constructor like so

    $('#modalWindow').dialog({ autoOpen: false, modal: true, zIndex : -1});
    

提交回复
热议问题