Hi,

After update with «drush up» a copy of Panopoly, options type checkboxes not working correctly. Not shown the «wrapper options-set» div when option is checked.

For example, in «add view» page [admin/structure/views/add] never expand options of checkboxes «Description», «Create a page», «Create a block» ... Divs always have style «display: none», are checked or not.

The problem looks to be related with «dependent.js» [ctools/js/dependent.js], which changed line

var val = $(trigger).attr('checked') ? true : false;

for

var val = $(trigger).attr('checked') || 0;

If we restored this file, the problem dissapears.

However, in a Drupal 7 installation, with last version of Ctools, not appear this bug.

Excuse my English, please.

Comments

beeradb’s picture

Status: Active » Closed (won't fix)

Dgdavid,

The issue here looks to be that you used drush up to update. We manage the versions of modules within Panopoly to avoid conflicts like this. If you'd like to upgrade your Panopoly site, please use the upgrade instructions on our release notes instead of drush up. http://drupal.org/node/1838074

I'm closing this issue in the meantime. Feel free to reopen if I've misunderstood the actions you took to upgrade.

dgdavid’s picture

Ok, thanks!