5

这是我使用drupal 的第一步。

我为我的文章创建了一个分类层次结构,现在我正在尝试向内容类型“文章”和“媒体”添加一个新字段,以便内容管理员可以为他的新内容分配一个“类别”。

所以我去过结构>内容类型>文章>管理字段然后“添加新字段”:

1- Label = Category
2- Name = "field_category
3- Field = "Term reference"
**4- Automatically changes to "Select list" but I am unable to see the drop down list options. Clicking the list doesn't do anything, I couldn't select Autocomplete or any other value I've seen on forums & tutorials. Using firebug I could see the options are there, but the list doesn't show up.**

所有类型的字段都会发生这种情况,即使是最基本的文本字段也是如此。知道为什么会这样吗?

4

2 回答 2

5

正如 glumbo 提到的,这里的问题是由jQuery 1.7 update引起的。从 jQuery 1.6 开始,应该使用.prop()函数访问 DOM 属性。一些修补程序解决方案存在一个解决的问题:

您需要在以下几行中用 .prop() 替换.attr ( ) jQuery 函数调用:/modules/field_ui/field_ui.js

100:      $(this).html(html).attr('disabled', disabled ? 'disabled' : '');
253:      $(ajaxElements).attr('disabled', true);

请注意,此修复修改了 Drupal 核心模块,您可能需要使用补丁(无论如何,Dries 都会杀死小猫:)。

于 2012-06-12T08:01:00.823 回答
1

问题在于 jquery 更新。如果您使用的是 jquery 1.7,您将遇到此问题

于 2012-04-28T22:48:32.710 回答