--> Add or edit a layout.
- Can only create one thing or change one thing
- After that the popup is not showing up any more. Only dimmed overlay, no popup window. Nothing happens
- If I save the layout after one change and go back I can add one new thing and then I have to save again

- Problem not showing up on a fresh install.
- The affected site is pretty fresh too and has no special modules. But has (Twitter) Bootstrap theme.

UPDATE:
More info:

The seems to be that ctools modal window is placed at the location top: -1000px

The right way that works: (This is what happens in the beginning, first time something is added)
<div id="modalContent" style="z-index: 1001; position: absolute; top: 152px; left: 123.5px; display: block;"> ....

The hidden modal window: (this happens when I try to edit second time)
<div id="modalContent" style="z-index: 1001; position: absolute; top: -1000px; display: block;"> ....

Comments

vulfox’s picture

More info:

The seems to be that ctools modal window is placed at the location top: -1000px

The right way that works: (This is what happens in the beginning, first time something is added)
<div id="modalContent" style="z-index: 1001; position: absolute; top: 152px; left: 123.5px; display: block;"> ....

The hidden modal window: (this happens when I try to edit second time)
<div id="modalContent" style="z-index: 1001; position: absolute; top: -1000px; display: block;"> ....

vulfox’s picture

SOLUTION / WORKAROUND:

The Problem was JQuery version

I used module Jquery Update 7.x-2.3-alpha1+0-dev to update Drupal to Jquery version 1.8 (my theme needed it)

The problem is solved by dropping the Jquery to version 1.7

I'm not sure if Jquery 1.8 conflicts with CTools or Panels (or something else)

vulfox’s picture

Issue summary: View changes

More info added

paean99’s picture

Issue summary: View changes

Same problem here (theme: commerce_kickstart-7.x-2.14; Panels 7.x-3.4).
jQuery update module installed too (7.x-2.3).
Same solution: 1.7 version.
Thanks for the workaround.

p.s. Didn't try with jQuery Update 7.x-2.4. I had to install version 7.x-2.3 because of another issue.