Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
客户希望能够根据 ActiveAdmin 中的一对一关系(而不是一次仅一个)中的一组对象过滤记录。我无法找到有关此类功能的文档。
如何提供基本的多选过滤器选项,而不是 ActiveAdmin 中默认使用的单选?
这很简单。只需将此选项添加到您的过滤器定义中:multiple => true 示例:
filter(:categories, { as: :select, multiple: true, input_html: { class: :select2, style: "width: 100%;" }, label: I18n.t(:categories) })