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?
|
feedback
|
|
Sure :) Here is my idea: First, you define accessors in your user model:
Then in your view, 'inside' form_for helper, you could write for example:
...or whatever you want. (Note: I am using Finally, you define a callback in you user model:
| |||
|
feedback
|
attr_accessors and then process logic later on, in a callback like before_save. – socjopata Aug 17 '11 at 23:08