Hi,
Bueditor any pop-ups (image insert, link insert...) appear behind dialog window and not clickable (tested in firefox).
Use case - comment reply.

Comments

zroger’s picture

Status: Active » Postponed (maintainer needs more info)

are you using BUeditor inside of the comment reply dialog?

Oleksa-1’s picture

Correct, Roger, inside.
I changed z-index and for dialog and for bueditor popups in different ways, unfortunetly nothing helped (

Oleksa-1’s picture

Hi, Roger,
I just looked through info about Dialog on jqueryui.com
http://jqueryui.com/demos/dialog/#option-modal
and it mentioned there that if you

Option:modal
Type: Boolean
Default: false

If set to true, the dialog will have modal behavior; other items on the page will be disabled (i.e. cannot be interacted with). Modal dialogs create an overlay below the dialog but above other page elements.

I will try to set in dialog.js
modal: false in

/**
   * Display the modal
   */
  Drupal.Dialog.show = function() {
    if (!Drupal.Dialog.dialog) {
      var o = {modal: true, width: 600, position: 'center'};
      Drupal.Dialog.dialog = $(Drupal.theme('DialogMain')).dialog(o);
Oleksa-1’s picture

Status: Postponed (maintainer needs more info) » Closed (fixed)

I tested and it now works.

i changed z-index in bueditor.css

.editor-popup {
z-index:1030;
}

and set modal: false in dialog.js