Is there a way to group inputs under one label and display in inline? To avoid something like this:
.input.optional
= form.label :price
.input
= form.text_field :price
= form.select :currency
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
There’s nothing in Formtastic for this, but you can achieve the same visual affect by using two standard Formtastic inputs one after the other and styling them to appear “inline”. This means you might want to wrap them in a containing field set, float them against each other, and visually hide one or both of the labels.