This question is related to the ActiveAdmin gem. I'm trying to filter a column that has a boolean type but with no success: filter :column_name and filter :column_name, :as => :boolean don't work.

Any idea?

Thanks!

link|improve this question

feedback

1 Answer

up vote 3 down vote accepted

filter :column_name, :as => :select will create a drop down with values "Any", "True", "False"

link|improve this answer
Thanks, it works! – Amokrane Chentir Sep 30 '11 at 13:01
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.