I\'ve been spending some hours searching for useful Rails gems but I still hesitate between simple_form and formtastic.
Some time ago I had this form (in slim templating here) that I was unable to make work with simple_form, after 20 minutes I moved on, but I came back today and am curious about how this would translat
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 re
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:
How do I change the order of the input element that simple form generate? Because the hidden checkbox does block for clicking the label.
Here\'s my form: = simple_form_for [@post, @comment] do |f| = f.input :text, :label => false = f.button :submit
My application has 3 models : consultant, project and appointment I am using a nested form with simple_form gem
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 a very si开发者_运维问答mple issue: User model: class User < ActiveRecord::Base devise :database_authenticatable,
So I\'m building a form in rails 3.1, using <%= simple_nested_form_for(@person, :url => collection_url, :html=>{:multipart => true}) do |f| %>