From 43df35213e80b9b7de69cc80f138882708a05b9b Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Tue, 18 Oct 2016 16:37:15 +0200 Subject: Improving all forms --- config/initializers/simple_form.rb | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) (limited to 'config/initializers') diff --git a/config/initializers/simple_form.rb b/config/initializers/simple_form.rb index 934487af6..e0c22e0c2 100644 --- a/config/initializers/simple_form.rb +++ b/config/initializers/simple_form.rb @@ -40,7 +40,7 @@ SimpleForm.setup do |config| b.optional :readonly ## Inputs - b.use :label_input + b.use :input b.use :hint, wrap_with: { tag: :span, class: :hint } b.use :error, wrap_with: { tag: :span, class: :error } @@ -51,6 +51,14 @@ SimpleForm.setup do |config| # b.use :full_error, wrap_with: { tag: :span, class: :error } end + config.wrappers :with_label, class: :input, + hint_class: :field_with_hint, error_class: :field_with_errors do |b| + b.use :html5 + b.use :hint, wrap_with: { tag: :span, class: :hint } + b.use :error, wrap_with: { tag: :span, class: :error } + b.use :label_input + end + # The default wrapper to be used by the FormBuilder. config.default_wrapper = :default -- cgit