If I turn on jquery 1.7 with jquery update module, it kills field managing select functions.
Maybe its drupal core error?

Screen

CommentFileSizeAuthor
Screen shot 2012-03-01 at 5.59.15 PM.png362.05 KBsiilak

Comments

hles’s picture

Drupal Core is not made to work with jQuery 1.7. I haven't had the exact same issue as you've had but there are other similar issues that will happen:

There are things you can do to fix these issues though:
You can create your own module based on jQuery Update to replace states.js by your own with the fixes mentioned above.
You can replace field_ui.js with your fixed one in the template.php of your admin theme with hook_js_alter().

/**
 * Implements hook_js_alter().
 */
function rubik_js_alter(&$js) {
  if (isset($js['modules/field_ui/field_ui.js'])) {
   $js['modules/field_ui/field_ui.js']['data'] = drupal_get_path('theme', 'rubik') . '/js/field_ui.js';
  }
  ...
}

Or you could tell your custom module based on jQuery Update to replace js files to only use jQuery 1.7 on non-admin pages.

siilak’s picture

thanks :)

Rosamunda’s picture

There´s a fix for jquery update that´s here.
Could this work?

I have some issues with jQuery, and I "think" that could be because of this, because I´m trying to use twitter´s bootstrap in a Drupal 6 installation.

gagarine’s picture

Project: Twitter's Bootstrap » jQuery Update
Status: Needs work » Closed (duplicate)

This is not related to twitter bootstrap directly and issue are allready open on jQuery update. So close it as duplicate.

#1498858: [meta] attr and prop (help is welcome!)
#1448494: jQuery 1.7: field_ui.js use attr for property (you will find a fix on comment #9)