Questions about "Simple Form" which generates view code for forms in Rails.
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-formI 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-formI'm trying to stop simple_form from adding error labels entirely. tried this css : label.error {display:none;} but SimpleForm …
ruby-on-rails simple-formI 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-formI 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-formI have setup autocomplete in my application and I noticed during testing that it suddenly failed having just been working …
ruby-on-rails simple-formI 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-formI'm trying to produce a regular simpleform form = simple_form_for [:hq, @team, @order] do |f| .tickets = f.select :tickets, :…
ruby-on-rails simple-formI 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-formI'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