Created
December 23, 2013 18:00
-
-
Save randomor/8101728 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module ActiveAdmin | |
module Inputs | |
class FilterNumericRangeInput < ::Formtastic::Inputs::StringInput | |
include FilterBase | |
def to_html | |
input_wrapping do | |
[ label_html, | |
builder.text_field(gt_input_name, input_html_options(gt_input_name)), | |
template.content_tag(:span, "-", :class => "seperator"), | |
builder.text_field(lt_input_name, input_html_options(lt_input_name)), | |
].join("\n").html_safe | |
end | |
end | |
def gt_input_name | |
"#{method}_gteq" | |
end | |
alias :input_name :gt_input_name | |
def lt_input_name | |
"#{method}_lteq" | |
end | |
def input_html_options(input_name = gt_input_name) | |
current_value = @object.send(input_name) | |
{ :size => 10, :id => "#{input_name}_numeric" , :value => current_value} | |
end | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Forked from http://staal.io/blog/2013/02/26/mastering-activeadmin/, updated for ransack.