I added this line to the settings to try and get the editor to appear:
node/*/panel_content
From that page is where you edit the content of panels. If you create a pane to go into the panels bueditor does not show up. Is there a way to enable this? Or could this be in a future update?

CommentFileSizeAuthor
ScreenShotOfEditBox.png435.51 KBapb1991

Comments

ufku’s picture

Normally, adding the "panel/ajax*" path to the visibility settings of the editor should work, however, the modal dialog does not care about the javascript loaded dynamically.

So you should statically load your editor on the calling page(node/x/panel_content)

Put this in your theme's template.php

if (arg(0) == 'node' && arg(2) == 'panel_content' && module_exists('bueditor')) {
  $bue_id = 1;//your editor's id
  bueditor_settle($bue_id);
  $bue_setting['BUE']['preset']['edit-body'] = "e$bue_id";
  drupal_add_js($bue_setting, 'setting');
  drupal_set_html_head('<style type="text/css">.bue-popup{z-index: 1001 !important}</style>');
}
ufku’s picture

Status: Active » Closed (fixed)