Tagged Questions

Formtastic is a Rails form builder plugin with semantically rich and accessible markup.

learn more… | top users | synonyms

16
votes
4answers
4k views

How to add and remove nested model fields dynamically using Haml and Formtastic

We've all seen the brilliant complex forms railscast where Ryan Bates explains how to dynamically add or remove nested objects within the parent object form using Javascript. Has anyone got any ideas ...
11
votes
1answer
797 views

How does the HTML5 multiple file upload field map to a nested model in Rails 3?

I'm trying to use the HTML5 multiple attribute on a file field in a nested form. The models are as follows: class Album < ActiveRecord::Base has_many :album_images has_many :images, :through ...
7
votes
1answer
2k views

Is there any way to create a form with formtastic without a model?

I would like to use formtastic to create form but I don't have a model associated with that (login form with username, password and openid URL). Of course I could create a model to do that but that ...
6
votes
3answers
869 views

In Rails 3, using Formtastic 2, how can I replace the built in ordered list with div's?

In my Rails 3 application I'm using Twitter Bootstrap as a frame work for developing an in house project management system. I'm using Formtastic to help me with forms since it save a lot of time and ...
6
votes
1answer
354 views

Formtastic checkbox params sent differently by Capybara than by actual app

The following formtastic form checkbox field set: <%= semantic_form_for @store do |f| %> <%= f.inputs do %> <%= f.input :services, :as => :check_boxes, :collection => ...
6
votes
2answers
1k views

HTML - Correct way of coding a checkbox with a Label

I've been using formtastic in order to generate HTML forms on rails applications. My question, however, is really HTML-related. Today I found a strange behaviour on the way formtastic generates ...
5
votes
2answers
619 views

Get a value of object field inside fields_for loop

i Have a scenario, i need to check the value of the object property in the fields_for loop. <%= f.semantic_fields_for :review_details do |rd| %> <%= rd.input :review_criteria_id, ...
5
votes
2answers
1k views

Formtastic, own :as input type

How I can add my own field types to formtastic ? For exemple, I need to have a custom datetime input, and I want something like this: <%= f.input :start_date , :as => :my_date %> This ...
5
votes
3answers
2k views

No-Model Formtastic Form

I am looking to reproduce the following with Formtastic: <% form_tag '/search', :method => 'get' do %> <%= text_field_tag :q, params[:q] %> <% end %> So far I have: <% ...
4
votes
1answer
134 views

Undefined method 'actions' for Formtastic::FormBuilder

I have rails 3.1.3 and formtastic 2.0.2. I'm using the most basic form you can imagine: <%= semantic_form_for @customer do |f| %> <%= f.inputs %> <%= f.actions %> <% ...
4
votes
1answer
1k views

ActiveAdmin with has_many problem; undefined method 'new_record?'

I'm trying to customise a ActiveAdmin form for a Recipe model that has a has_many relationship with Step. class Recipe < ActiveRecord::Base has_many :steps end class Step < ...
4
votes
2answers
246 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 ...
4
votes
3answers
361 views

2 submit buttons in a form

I have a question about forms. I have a fairly standard form that saves a post (called an eReport in my app) with a title and body. The table also has a "published" field, which is boolean. The saved ...
4
votes
2answers
493 views

Rails 3: Form getting submitted twice

I am developing a Rails application that has forms generated using formtastic. I am developing & testing locally - that is - on localhost:3000 w/ Ruby-1.9.2, Rails-3.0.1, jQuery and AJAX. ...
4
votes
1answer
2k views

Using Formtastic's semantic_fields_for with a has_many association

I am trying to create a nested form using formtastic. I've included my code below but am running into some problems that I've also listed below. Any suggestions? Thanks. # Home model class Home ...
4
votes
1answer
4k views

Using :collection and :include_blank in Formtastic. How to do it?

I use the superb Formtastic plugin for Ruby on Rails. Does anybody know how to include a blank (option), when using a custom collection? When I try: <%= f.input :organizations, :collection => ...
4
votes
2answers
3k views

formtastic - how to prepopulate a string input with a value

I'm building an app, where users can give comments by just leaving their email to the comment. I want them to be able to register directly from there, by a link with their email adress as a param ...
3
votes
1answer
102 views

How to use grouped_collection_select to show multiple selection?

I'm using the following code to display a tree view selection box of categories: grouped_collection_select(:categories, :category_id, Category.top_level, :children, :name, :id, :name, :include_blank ...
3
votes
1answer
78 views

How do I write a resource-less form with formtastic

I'm having trouble creating the following with formtastic. It's a simple form, but it's not based on a full resource, just a query string param I'd like to send. # index.html.haml ... = form_tag ...
3
votes
2answers
765 views

Image file input with Formtastic and ActiveAdmin

I started to use formstatic but I need to make a file field with image preview. I mean, when i edit an object, i want to see the image already linked. How can I do that? Thank you !
3
votes
1answer
317 views

Railscast 198, but using formtastic

How could you do what's covered in RyanB's Railscast on editing multiple records individually, using Formtastic? Formtastic doesn't use form_tag, which RyanB's method relies on.
3
votes
1answer
555 views

Multi-step form in Rails 3 with Paperclip attachments

I'm creating a multi-part form in the style that Ryan Bates describes here: http://railscasts.com/episodes/217-multistep-forms http://asciicasts.com/episodes/217-multistep-forms (text-based version) ...
3
votes
1answer
830 views

rails 3, paperclip (& formtastic) - deleting image attachments

I can't seem to find an example that is complete in all the components. I am having a hard time deleting image attachments Classes class Product has_many :product_images, :dependent => ...
3
votes
3answers
794 views

How to force the method for a formtastic form to be put?

I have something like semantic_form_for @whatever, :url => whatever_url which generates a from with method="post" I need it to be put, I've already tried: semantic_form_for @whatever, :url ...
3
votes
1answer
749 views

Assigning a nested attribute with Formtastic

I've been trying to figure this one out for a while but still no luck. I have a company_relationships table that joins Companies and People, storing an extra field to describe the nature of the ...
3
votes
2answers
3k views

Formtastic nested model form fields (Rails 3)

So here's the scenario: User: has_one :company accepts_nested_attributes_for :company Controller: @user = User.new @user.build_company View: <% semantic_form_for @user, :url => ...
3
votes
3answers
3k views

Using fields from an association (has_many) model with formtastic in rails

I searched and tried a lot, but I can't accomplish it as I want.. so here's my problem. class Moving < ActiveRecord::Base has_many :movingresources, :dependent => :destroy has_many ...
3
votes
2answers
3k views

Formtastic select with grouping

Now with Formtastic I have plain select: = f.input :category, :as => :select, :include_blank => false, :collection => subcategories Here I show only children categories. I use acts_as_tree ...
3
votes
6answers
1k views

Is there any rails plugin like formtastic that makes show and index views easier to code?

I use formtastic to create new and edit forms for my resources. with something like f.inputs it fetches and displays all my fields automatically. I would like to know if there is something similar ...
3
votes
5answers
2k views

Default value for date_helper in formtastic

As basic as it sounds, I can't make the date_helper default to a date, as in: - semantic_form_for resource do |f| - f.inputs do = f.input :issued_on, :default => Date.today = f.buttons ...
3
votes
2answers
6k views

Formtastic select list

<% semantic_form_for(@product, :html => {:multipart => true}) do |f| %> <% f.inputs do %> <%= f.input :name %> <%= f.input :price %> <%= ...
2
votes
1answer
29 views

Formtastic's default css is broken in firefox

Take a look at the following url in chrome & firefox: http://dota2.herokuapp.com/accounts/login Could someone show me how to get the forms displaying the same in both firefox and chrome? I find ...
2
votes
1answer
228 views

How do I get nested_form to work with Formtastic in Rails 3.1?

I have the following form with Formtastic: = semantic_form_for @user, :url=> url_for(register_path), :html => {:id => "registration_form"} do |f| = f.inputs :name => "Addresses", ...
2
votes
1answer
162 views

Searching a belongs_to association when editing in ActiveAdmin

When I edit a record that has a belongs_to association in ActiveAdmin, I'd like to search for potential records instead of choosing from a select list (the default option). For example, I have a Post ...
2
votes
1answer
164 views

Assign custom labels to checkboxes using Formtastic

I have a few checkboxes coming from nested model (:admin accepts_nested_attributes_for :account_setting). By default, the label for the checkbox is generated from the model's attributes. But I want to ...
2
votes
0answers
119 views

Rails Formtastic: adding “data-” field to option tag

I have: form.input :duration, as: select, collection: {} I need: <option value="" data-price="XXX"></option> Rails does not support HTML5 data attributes for the option tag. ...
2
votes
2answers
612 views

ActiveAdmin, Formtastic, and Paperclip: Not Rendering File Dialog

I'm implementing a generic media gallery using Ruby on Rails. I've chosen ActiveAdmin to handle the administration portion of my task and it's worked well so far, except for one thing: It's not ...
2
votes
1answer
169 views

Rails Active Admin datetime input does not load the current date and time?

Is there any option for formtastic in Active Admin, for the showing current datetime in datetime input. It's coming with blank on the form load.
2
votes
1answer
189 views

Single Table Inheritance with Formtastic

So I have two models that inherit from another as follows: class OneTime < Step has_one :due_date accepts_nested_attributes_for :due_date end class Repeatable < Step has_many :due_dates ...
2
votes
4answers
658 views

Rails 3: “uninitialized constant Formtastic::FormBuilder” error after deploying app on production server

I am trying to deploy my Rails3.0 application on production server. There was many troubles before, but all of them solved. And now I have another. There is a passenger error page's text: Error ...
2
votes
0answers
110 views

Get formtastic to create <button> fields rather than <input>?

I am wondering how I can get formtastic to render submit buttons as: <button … > Rather than: <input type="submit" … > Any ideas? Many thanks, Galen
2
votes
1answer
316 views

rails3.1 and formtastic 2.0.0.rc2 - undefined method `inputs'

I am using rails 3.1.0.rc3 with formtastic 2.0.0.rc2 and I am getting this error - undefined method `inputs' for #<ActionView::Helpers::FormBuilder:0x000001059c2fb0> Here is the block of code ...
2
votes
2answers
239 views

Rails / Formtastic - Validation isn't occuring

I'm using formtastic to validate forms: <%= semantic_form_for @user do |f| %> <ul class="formItem"> <%= f.input :username, :required => true, :label => "Your ...
2
votes
1answer
103 views

Rails form problem

Have a boolean field (using formtastic) and the value won't persist through an error. If submitted and an error exists, on reload, the boolean field automatically checks itself, which is bad. I can ...
2
votes
1answer
393 views

rails jquery formtastic partial => undefined method 'inputs'

I'm trying to update the values of a select statement when another field is changed. This is my code: Form (_form.html): <%= semantic_form_for [:projects,@projectmilestone], :remote => true ...
2
votes
1answer
552 views

rails formtastic nested form WARNING: Can't mass-assign protected attributes

I've following models: class CapstoneMilestone < ActiveRecord::Base attr_accessible :capstone_id, :milestone_id, :rank, :id, :status, :statusweight, :rating, :ratingweight belongs_to ...
2
votes
3answers
413 views

Retain Search Form Data Ruby On Rails

Trying to build a search on my homepage with simple_form (Pretty much same as formtastic). The search works fine and im getting my results but after submission I want to retain the vales with what the ...
2
votes
1answer
191 views

Validating auto complete input for associations

Ok, so I'm probably missing something obvious here. I'm using rails3-jquery-autocomplete and formtastic to allow the user to select a Category when creating an Item: class Category < ...
2
votes
2answers
3k views

Rails 3, nested multi-level forms and has_many through

I'm trying to get it to work but it dosen't! I have class User < ActiveRecord::Base has_many :events, :through => :event_users has_many :event_users accepts_nested_attributes_for ...
2
votes
1answer
374 views

formtastic - subset of values in accepts_nested_attributes_for

I have a model: class Contact < ActiveRecord::Base has_many :phones accepts_nested_attributes_for :phones end I want to build 50 phone #s that users can add (there may already be phones 1 or ...

1 2 3 4 5 6