I´ve started an issue in the advance profile module, because after testing that module (that needs Panels 2.0 to work) in my testing environment (the very same server, under another drupal installation), it didn´t quite worked.
In fact, it did work, but some things didn´t go ok.
The principal problem, and the one that prevents for using that module at all was that I couldn´t move, nor change the content of each panels section.
When I click try to do that, the page reloads and remains exactly the same. Clicking the (+) plus button to add conten gets the same result.
I´ve started this topic there because I´ve thought it had something to do with that module, but now I realize it´s panels, because I´ve uninstalled that one, and using only panels the problem remains.

I don´t have the jquery module installed, just Javascript Tools (the latest stable version).

Thanks in advance for your help!!

Rosamunda

Comments

gracearoha’s picture

It might be a cache issue. you could check out the solution here and see if it works for you:
http://drupal.org/node/230337

Rosamunda’s picture

Thanks for your advice.
I did as they say: ALTER TABLE panels_object_cache CHANGE COLUMN data data longtext;, and the problem remains...
It seems something to do with javascript, or ajax, because it desn´t even let me grab a block and take it to another area...

Another thing: When I click on "Cache settings" nothing happens, it just reloads...

Rosamunda’s picture

Gotcha!
It seems that there are something in the "Live Search" module that Panels doesn´t like.
When I uninstall that module panels works like a charm!

Damn, I liked the the livesearch module...

Rosamunda’s picture

Title: Cannot Close nor Move/add stuff inside Panels sections » it seems that LIVESEARCH module doesn´t go well with Panels 2.0
Status: Active » Closed (fixed)
merlinofchaos’s picture

Status: Closed (fixed) » Active

Since it's not clear whose bug the interaction problem this is, let's leave it open.

michelle’s picture

Odd.. This sounds a lot like the baffling problem I'm having. But I'm not using the livesearch module. Tracking this in case something useful comes of it.

Michelle

aterchin’s picture

same problem just after enabling live search with a search box in a sidebar.
using 2.0 beta3

sdboyer’s picture

I'll have a quick look through livesearch when I get a chance to see if I can spot anything obvious, but I'll say right up front that if it's a clash that isn't the result of something that's a definite bug in panels itself, then it's pretty unlikely we'd adapt panels to fit with livesearch.

tekken’s picture

I had the same problem. Seemed to be a JavaScript error because my JS Console showed the following error:

searchBox.val(localizedTerm) has no properties
../modules/livesearch/livesearch.js
Line 76

This fix did it for me. Open /modeules/livesearch/livesearch.js

Find Line 75: searchBox.val(

In the line above 75, add the following
if (!localizedTerm) {localizedTerm = 'Search'};

Lines 74-76 should look like this now:

    searchForm.addClass('compact');
    if (!localizedTerm) {localizedTerm = 'Search'};
    searchBox.val(
sdboyer’s picture

Project: Panels » Live Search
Version: 5.x-2.0-beta2 » master
Component: User interface » Code
Category: bug » feature
Status: Active » Postponed (maintainer needs more info)

tekken - please submit this as a patch to the livesearch module. Kicking it over there.

kourge’s picture

Status: Postponed (maintainer needs more info) » Fixed

This is now fixed in HEAD.

Anonymous’s picture

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for two weeks with no activity.