1

如何从选择类型过滤器中删除“任何”选项?谢谢!

4

1 回答 1

0

这是一个为所有选择过滤器禁用它的猴子补丁。贴进去initializers/active_admin.rb

module ActiveAdmin
  module Inputs
    class FilterSelectInput < ::Formtastic::Inputs::SelectInput

     def input_options
       super.merge(:include_blank => false)
     end
    end
  end
end
于 2012-07-04T19:02:19.467 回答