我面临一个奇怪的问题。我正在使用chosen
drupal插件。我有3个术语参考字段添加到内容类型。
编辑时&添加此内容类型的任何节点,应用所选择的UI界面&与所有3个领域合作。
现在,我创建了一个视图并公开了所有这三个术语参考字段的过滤器。在视图中,选择的UI界面仅应用于一个字段,而不应用于其余字段。
在所选模块的设置中(admin / config / user-interface / selected)
Apply Chosen to the following elements
设置为select
这些是由Drupal输入到javascript中的Drupal设置:
"chosen":{
"selector":"select",
"minimum_single":"20",
"minimum_multiple":"20",
"minimum_width":"300",
"search_contains":true,
"disable_search":false,
"disable_search_threshold":"Never Apply",
"placeholder_text_multiple":"Choose some options",
"placeholder_text_single":"Choose an option",
"no_results_text":"No results match",
"multiple":{
"field_tags_tid[]":true,
"field_working_area_tid":false,
"field_published_in_tid[]":true
},
"max_selected_options":{
"field_tags_tid[]":false,
"field_working_area_tid":false,
"field_published_in_tid[]":false
}
}
}
可能是什么问题?如何纠正它?
答案 0 :(得分:1)
我不确定您的问题是什么,但所选模块的设置位于:admin / config / user-interface / selected。
将选择器字符串添加到标记为“Apply Chosen to the following elements”的文本字段中。