Created
October 15, 2011 00:33
-
-
Save fedesoria/1288775 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
class LeftBoxInput < SimpleForm::Inputs::Base | |
def input | |
"<div class='input-prepend'><span class='add-on'>#{options[:symbol]}</span>#{@builder.text_field(attribute_name, input_html_options)}</div>".html_safe | |
end | |
end |
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
<%= f.input :foo, :as => :left_box, :symbol => "2 + 2 ?" %> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment