1

select-type フィルタから「Any」オプションを削除するにはどうすればよいですか? ありがとう!

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 に答える