Questions about "Simple Form" which generates view code for forms in Rails.
I want to use labels for collection items (for example, their translations). = simple_form_for(@client) do |f| = f.error_…
ruby-on-rails ruby-on-rails-3 simple-formI'm using simple_form, and I wonder if it's possible to skip any wrapper divs when dealing with an association …
ruby-on-rails ruby ruby-on-rails-3 simple-formUsing rails 4, and trying to add a file field to an existing form, using simple_form and paperclip. Here's the …
ruby-on-rails paperclip simple-form<p><%= f.input :terms, :as => :boolean, :label => false, :boolean_style => :inline %> Accept <%= …
html css ruby-on-rails twitter-bootstrap simple-formI have the following code in my views <%= f.input :role_names, as: :check_boxes, collection: @program.role_names %&…
ruby-on-rails simple-formI have a problem with this: I want add :onchange => "readURL(this)" to my: <%= f.input :image, :as =&…
ruby-on-rails ruby-on-rails-3 ruby-on-rails-3.1 simple-formThis is a simple question that I'm kinda ashamed to ask, but I've been banging my head against the wall …
ruby-on-rails ruby-on-rails-3 simple-form fields-forDoes anyone know how to change the class simple_form uses from 'controls' to 'form-control'. This was a change made …
ruby-on-rails twitter-bootstrap simple-form twitter-bootstrap-3resources :users, shallow: true do resources :shoes end This gives me two different routes for create and edit user_shoes_…
ruby-on-rails simple-formI have a Flight model nested inside a FlightLog model. A FlightLog may contain many flights. I'm using SimpleForm with …
ruby-on-rails ruby validation twitter-bootstrap simple-form