I'm not quite sure what the correct terms are, but what I'm trying to do is in a form (preferably using the simple_form gem) have one of the inputs, :maximum, use both a text field and select box. The user would type in the text box a number, and then select from a dropdown box of hours, days, or months. So 21 days, 3 months, 3 hours, etc. When the form was submitted I would convert that to days and store it in the database. I know how to change the input type in simple_form, but is it possible to have two inputs for one variable?

link|improve this question

80% accept rate
I guess you could use attr_accessors and then process logic later on, in a callback like before_save. – socjopata Aug 17 '11 at 23:08
Could you elaborate on how attr_accessor would be used? – Alexei Aug 19 '11 at 16:32
feedback

1 Answer

up vote 2 down vote accepted

Sure :) Here is my idea:

First, you define accessors in your user model:

attr_accessor :thing, :another_thing, :and_another_thing

Then in your view, 'inside' form_for helper, you could write for example:

<%= form.input :thing, :as => :boolean %>
<%= form.input :another_thing, :as => :text %>

...or whatever you want. (Note: I am using formtastic here. You should consider using Rails methods if you're not using formtastic gem. )

Finally, you define a callback in you user model:

before_create :build_my_fancy_record

def build_my_fancy_record
  self.storage_field = "#{thing} #{another_thing}"
end
link|improve this answer
Works like a charm, thank you very much! – Alexei Aug 20 '11 at 17:53
feedback

Your Answer

 
or
required, but never shown

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