According to simpleform on github SimpleForm aims to be as flexible as possible while helping you with powerful components to create your forms. The basic goal of simple form is to not touch your way of defining the layout, letting you find the better design for your eyes. SimpleForm borrows ...
14
votes
7answers
4k views
Rails: Using simple_form and integrating Twitter Bootstrap
I'm trying to build a rails app and simple_form looks to be a really useful gem. Problem is that I am using twitter bootstrap css to do the styling and the simple_form doesn't allow you to specify the ...
9
votes
2answers
2k views
Simple form and hidden input?
Anyone knows how to use simple form with an hidden input?
= simple_form_for @movie do |f|
= f.hidden :title, "some value"
= f.button :submit
That results in this error
undefined method ...
5
votes
3answers
1k views
rails simple_nested_form_for fields_for wrong number of arguments
So I'm building a form in rails 3.1, using
<%= simple_nested_form_for(@person, :url => collection_url, :html=>{:multipart => true}) do |f| %>
<%= render :partial => "form", ...
3
votes
2answers
342 views
Rails forms for has_many through association with additional attributes?
How can I generate form fields for a has_many :through association that has additional attributes?
The has_many :through relationship has an additional column called weight.
Here's the migration ...
3
votes
4answers
747 views
an example of a nested form in simple form?
I am still struggling both writing the controller and the actual form to be able to nest one form in another with an optional model?
I have Message which has many contacts
When submitting a message, ...
2
votes
0answers
155 views
simple_form custom input for a composed_of aggregate attribute in Rails
I'm trying to write a custom input for the simple_form gem for a Rails 3 model which has a composed_of aggregate attribute. See the example below.
I tried using fields_for but it generates params ...
2
votes
0answers
103 views
association id not getting set using accepts_nested_attributes_for and decent_exposure
When I post a form to create a new inquiry with a child comment (in the app, inquiries can have multiple comments), the comment is not getting built. It works when remove the presence validations. So ...
2
votes
1answer
216 views
simple_form input with multiple fields
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 ...
2
votes
0answers
239 views
Python pyramid_simpleform how do I deal with relationships?
I'm moving my first steps with pyramid_simpleform after having ever used formalchemy in Pylons 1.
The form I'm starting with is pretty simple: I have some options and user has to check one.
here the ...
2
votes
1answer
691 views
mongoid, embedy_many, simple_form
i m looking for a way to manage multiple embedded objects in a form.
found a solution for formtastic by bowsersenior
Formtastic with Mongoid embedded_in relations
but i wasnt able to do the same ...
2
votes
2answers
712 views
how to preselect an association checkbox using simple_form
I have this piece of code, while using simple_form:
= simple_form_for :report do |f|
= f.association :presets,
:collection => @account.presets.collect{ |p| [p.name, p.id] },
:as => ...
1
vote
3answers
110 views
Twitter-Bootstrap: Simple_form not making horizontal form or correct HTML output?
I don't know why Its not duplicating like the example. When I put the following code to have this form:
<%= simple_form_for(resource, :as => resource_name, :url => ...
1
vote
0answers
91 views
`simple_form` custom inputs and `active_admin`
I'm trying to add administrator panel to my Rails app using active_admin. I had custom password input with Bootstrap features. And when I'm trying to run localhost:3000/admin I get message that there ...
1
vote
1answer
67 views
link_to_function does not react to click in rails 3.1.0 & simple_form
Here is the code in rfqs/_form_new.html.erb to add a selection box for standard.
<%= simple_form_for @rfq do |f| %>
<div id="std">
<%= render :partial => ...
1
vote
1answer
42 views
using formtastic with forem instead of simple_form
I am building my rails app and using forem to integrate forum in it. I have been using formtastic till now and forem uses simple_form.
I want to replace simple_form with formtastic in forem however ...
1
vote
1answer
80 views
collection_check_boxes with array
So I'm using simple_form for building my forms, this is not a requirement though.
What I am trying to do is using simple_forms collection_check_boxes and pass it an array.
I am storing my tags in ...
1
vote
1answer
44 views
Rails form tag errors out when encountering a binary field
I have a binary column type in my "users" table and when I try to include that field within simple_form_for tag, I get an error.
= simple_form_for @user
= f.input :secret_number
Here's the error-
...
1
vote
1answer
91 views
helper view with haml and simple_form
I tried to insert a simple_form helper into a view helper (sorry for the pun) and using it with the Haml::Helpers, example:
def front_box_search_html(form_object)
my_custom_wrapper() do
...
1
vote
0answers
89 views
Rspec test on Simple Form Associations
I am trying to run a request spec on a form (built with Simple Form). The form includes some select boxes that are generated using the association method and therefore database values for the model.
...
1
vote
0answers
78 views
How to set current value in collection in simple_form (using mongoid)
I have this in my form:
= f.input :location_id, :collection => @locations, :include_blank => false, :selected => @video.location
This works fine for my "new" view/action and I see a nice ...
1
vote
0answers
128 views
Rails Amazon S3 how to create a File Upload Progress Bar?
How do I create a upload field that uploads the file as soon as it is picked? With a nice status bar on the upload. I am using paperclip for the image uploads with Amazon S3 server. I have see this ...
1
vote
1answer
274 views
Rails 3.1 simple_form submit style css
Hello did anybody know how to add a class to a simple_form submit button, for css style.Here's what I try to do:
_form.html.erb
<%= simple_form_for(@drink) do |f| %>
<%= f.submit "Add ...
1
vote
1answer
322 views
Carrierwave image upload in nested form still creating record even no file is specified
I have a Carrierwave image upload in a nested simple_form which works (sort of) unless the user does not specify a file, in which case a blank Picture object is created unless there was a previously ...
1
vote
2answers
217 views
Simple form issue with Rails 3
I've been trying recently to show a list of the fields modified with success on submitting a form. The only problem is that my form (I use simple form) doesn't show the errors when there are some and ...
1
vote
1answer
285 views
Rails validation of image simple_form
I have that problem that my simple_form require both image file upload field and image url input.
How do I validate so that it is either the image fileupload field or the image url that should be ...
1
vote
2answers
215 views
Ruby on Rails simple_form_for all.each do
I am using Rails 3.0, Ruby 1.9.2 and the Plataformatec simple_form gem. This code works with a form_for but not simple_form_for:
<%= simple_form_for(@provider) do |f| %>
<% Car.all.each do ...
1
vote
1answer
165 views
Nested Models in RoR
I have the following Models:
class Topic < ActiveRecord::Base
has_many :posts, :dependent => :destroy
attr_accessible :name, :post_id
end
class Post < ActiveRecord::Base
...
1
vote
2answers
238 views
rails simple_form gives dots under stars for required fields, better way to remove them?
In many of my projects I use simple_form and love it.
However one really strange quirk that I find is that I get 3 small dots underneath the * it supplies for required fields.
I have to get around it ...
1
vote
1answer
92 views
Translate form helper to simple_form or formstatic
I have this in my model:
class Person < ActiveRecord::Base
RELATIONSHIP_STATUSES = [
"single",
"in a relationship",
"together",
"it's complicated"
]
validates ...
1
vote
1answer
738 views
Rails help simple form: undefined method `model_name' for Hash:Class
I am trying to create a form with the gem simple form.
The form should have a select list of all konkurrancers. And the action URL should be the controller public and action pricecompare and with the ...
1
vote
0answers
521 views
Rails - Default selected radiobutton in SimpleForm :collection
I've litte problem with radiobuttons in SimpleForm.
When i use
= f.association :manufactureType, :collection => ManufactureType.all, :as => :radio
Rails simply generates few radiobuttons, ...
1
vote
1answer
159 views
How can i a surround multiple inputs from a form with a div tag?
I am currently working on a rails app that has a common pattern on fields throughout many forms and many fields of the same form. This is the pattern:
<%= simple_form_for(@evaluation) do |f| %>
...
1
vote
1answer
485 views
Rails simple_form label above input
Using simple_form -- is there a way to change where the input field's label is placed? If for example, I wanted to place the label above the field, how would I do that?
1
vote
2answers
528 views
rails simple_form two models
I'm starting to use simple_form for a rails application, and while converting some of my forms, I came across one that has two models that it is working with, sort of an embedded form. Is this ...
1
vote
1answer
232 views
simple_form associations and mongomapper
I get this message when I try to add an association in my form:
Association :role not found
role.rb
...
many :users
key :name, String
key :description, String
...
user.rb
...
belongs_to :role
...
1
vote
1answer
252 views
is there a way to use simple_form in show.html.erb
I've spent considerable amount of time making a form in simple_form. It had 96 fields! I've split the form in different steps. Each step is made as a partial.
Now I have to prepare the form for ...
1
vote
2answers
823 views
nested attributes in simple_form returns mass assignment error
Models:
class Topic < ActiveRecord::Base
has_many :posts, :dependent => :destroy
validates :name, :presence => true,
:length => { :maximum => 32 }
...
1
vote
1answer
333 views
Where is this error message coming from? Simple_form?
i'm getting this error message popping up with strange styling. Where in my application is it coming from? I'm using the simple form gem.
1
vote
2answers
584 views
Rails form help has_one belongs_to association
I am trying to create an simple nested input field for links.
My konkurrancer model:
accepts_nested_attributes_for :link
has_one :link
My link model:
class Link < ActiveRecord::Base
belongs_to ...
1
vote
1answer
444 views
Dynamically show and hide a div with jquery using radio buttons
I have several instances of the following HTML on a page:
<div class="input radio optional">
<label class="collection_radio" ...
1
vote
1answer
236 views
How to submit a form to custom url with a different HTTP method?
I'm using simple_form gem to build my forms, and I'd like to submit a form to "/messages/delete_all" with the DELETE method. How can I do that with simple_form?
Here is what I have so far:
...
1
vote
2answers
428 views
change size and maxlength allowed for a field in simple_form
How can I change the size and max allowed characters for a field using Simple Forms. I've tried following but does not work:
<%= f.input :lastname, :size => 40, :max => 4 %>
I know ...
1
vote
1answer
257 views
How to restrict country names in the `country_select` plugin?
I'm using simple_form, which automatically uses country_select plugin when using a field named country, like this:
<%= f.input :country %>
But I want to be able to restrict the countries ...
0
votes
1answer
18 views
Complex Form Nesting in Rails - How to create the desired hash / array params output
I'm trying to figure out how to properly handle the params hash so as I dont pass params that should be nested multiple times..
Here is a simplified(removed not-needed info like labels etc) of my ...
0
votes
1answer
21 views
Integration Simple-form 2.0.0 and Zurb
In the new simple_form gem ( 2.0.0 ), there are a wrapper to twitter. But I prefer using zurb-foundation. So I try create this wrapper.
Anyone has some input to create the wrapper ?
0
votes
1answer
17 views
how to use composed_of in Rails 3
I'm development an application using Rails 3.1.1 + devise 1.5.0 + simple_form 1.5.2. I need that an user has an address and then I created one class address. The address class is used as a composed_of ...
0
votes
1answer
20 views
how to add a class to the input component in a wrapper in simple_form 2
I am trying to have class="text" in my input fields when using a custom wrapper called :hinted in simple_form 2.0.0.rc
config.wrappers :hinted do |b|
b.use :input, :class => "text"
end
...
0
votes
0answers
15 views
simple_form validation summary
Good night, guys.
I'm work with simple_form in my rails project and my form/model code is this:https://gist.github.com/1873089
How do I do to show error messages summary?
I would like show ...
0
votes
1answer
32 views
Does form_tag work with Simple_form?
I have a form that is using form_tag and not sure how to use it with the simple_form gem. This is how my form looks:
<%= form_tag create_multiple_prices_path, :method => :post do %>
<% ...
0
votes
0answers
18 views
IE issue with forms with required=“required” attibute
I'm using HTML5 validation in simple_form. In all the modern browsers the HTML5 validation works properly and I assumed on older browser it would allow the fallback of the server side validation I ...