2012-04-24 62 views

回答

0

这是一个monkeypatch,用于禁用所有选择过滤器。把它贴在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 
相关问题