Top "Simple-form" questions

Questions about "Simple Form" which generates view code for forms in Rails.

Rails Simpleform with non-model inputs

I have a normal form using simpleform. Now I'd like to add an input that does not have any corresponding …

ruby-on-rails ruby forms simple-form
Rails 4: Change 'name' attribute of Simple Form input

I am using Simple Form in a Rails 4 app for a @user object and have the line... = f.input :entity_…

html ruby-on-rails ruby forms simple-form
Rails simple_form: disable error labels

I'm trying to stop simple_form from adding error labels entirely. tried this css : label.error {display:none;} but SimpleForm …

ruby-on-rails simple-form
Serialized Hash field and Simple Form

I have the following. class Page < ActiveRecord::Base belongs_to :category serialize :fields end The value of fields will …

ruby-on-rails ruby-on-rails-3 serialization simple-form
Simple form input type

I am using simple-form gem to render my forms. I am trying to set the input field type to 'number'. …

ruby-on-rails html simple-form
rails 4 simple_form turn off autocomplete at form level

I have setup autocomplete in my application and I noticed during testing that it suddenly failed having just been working …

ruby-on-rails simple-form
Simple_form: how to change input's wrapper's class?(not the wrapper_html effect on)

I have a problem when using simple_form and Bootstrap 3. About the input's wrapper tag. Show codes below: view code(…

twitter-bootstrap ruby-on-rails-4 simple-form
Simple Form: Is it possible to remove labels and replace them with placeholders using the labels i18n?

I'm trying to produce a regular simpleform form = simple_form_for [:hq, @team, @order] do |f| .tickets = f.select :tickets, :…

ruby-on-rails simple-form
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 …

ruby-on-rails nested-forms simple-form
simple_form custom input with custom wrapper

I'm trying to make a custom input for currency in my app. I had those bootstrap wrappers and etc (I …

ruby-on-rails simple-form