Tagged Questions
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 ...
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
1answer
357 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 => ...
5
votes
2answers
625 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
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
158 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
247 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
364 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
3answers
498 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
105 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
2answers
784 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
321 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
842 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
799 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
757 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
236 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
163 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
125 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
622 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
171 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
4answers
665 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
2answers
241 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
104 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
399 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
522 views
How to submit formtastic via ajax?
So i have a form generated by formtastic and it's working :
<%semantic_form_for(Model.new,:url=>{:action=>"fooobar"}) do |f|%>
<%end%>
i was wondering if there's any way to submit ...
2
votes
1answer
556 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
414 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
194 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
377 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 ...
2
votes
1answer
272 views
Accessing object of form in formtastic
So I'm making a survey app. The users choose a type of form on the backend, and it displays as a certain type on the front end. That's only ideally, of course. What happens now is I can't access the ...
2
votes
2answers
498 views
How to properly pass collection for input in Formtastic
I need to pass a collection to the standard select input in Formtastic:
f.input :apple, :as => :select, :collection => Apple.all
The problem is, though that I need Formtastic to access a ...
2
votes
1answer
1k views
Rails: Formtastic: Select-Boxes without primary blank field
it's about Rails and Formtastic.
How can I add a select box with formtastic without an initial/primary blank field? So that the initially selected item is the first item with content.
Thanks!
...
2
votes
1answer
2k views
has_many :through formtastic multi-select field
I'm trying to set up a many to many relationship using the has_many :through method and then use a multi-select field to setup the relationships. I'm following this tutorial:
...
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 ...
2
votes
1answer
1k views
Include two inputs in same LI element in Formtastic
Using formtastic, I have a quantity field and unit field that asks for the quantity of the item and the unit it's measured in.
My problem, is that I would like the unit box to display along side the ...
2
votes
1answer
507 views
authlogic - cause for unsuccessful session creation and no error messages (with formtastic)
I have 2 questions about authlogic:
1 - how to get cause of unsuccessful session creation (for example - not confirmed, blocked, wrong pass etc) to use it in app logic (route to another page for ...
2
votes
1answer
404 views
How can I change the method used in Formtastic?
I was wondering how can I specify the method to send the data from a Formtastic form.
It usually uses POST, but I'd like it to use GET in some cases (i.e. for a search form).
Is it possible/easy?