Tagged Questions

4
votes
2answers
271 views

How to create Formtastic “partials”

Basically, I'm trying to create a dynamic group of check boxes that are keyed off a category select in the same form. For example, a user would choose a category from the select, and then a list of ...
2
votes
2answers
2k views

How to combine formtastic with Ajax form submission?

I would like to use formtastic instead of standard Rails helpers for my forms, however I currently submit them using Ajax (with remote_form_for). I suppose I could use the jQuery form plugin to ...
1
vote
0answers
369 views

Dynamic loading of options in select menu for a form whilst using formtastic

I have a formtastic form. And the problem is simple. I have 2 select menus. Based on the option selected in the 1st select menu, the 2nd select menu should be populated. I have this in my form code. ...
0
votes
1answer
147 views

Rails 3 and Formtastic. How to display fields according to selection (ajax)?

If I have shipments, each shipment has one of four possible modes. When I want to create an invoice, I go to New Invoice, select shipment from select menu (what shipment the invoice is for). If the ...
0
votes
1answer
402 views

How do I dynamically add a new option to a set of Formtastic checkboxes for associated resources?

Say I have a formtastic form that creates a Store and allows selection of Services it provides: <%= semantic_form_for @store do |f| %> <%= f.inputs :services, :as => :check_boxes, ...
0
votes
1answer
1k views

Make ajax result as select list with formtastic

is it possible to use Ajax and make the result as select list with Formtastic? example: semantic_form_for @user, :url => profile_path(@profile.id) do |f| - f.inputs do - f.input :province, ...