Sha256: 9c2142fb54cff0548c631892dcf066ff8abbe044c0562ddd0fce8498eeac0baa
Contents?: true
Size: 1.33 KB
Versions: 25
Compression:
Stored size: 1.33 KB
Contents
require 'simple_form' # Use this setup block to configure all options available in SimpleForm. SimpleForm.setup do |config| # Components used by the form builder to generate a complete input. You can # remove any of them, change the order, or even add your own components in the # stack. By inheriting your component from SimpleForm::Components::Base you'll # have some extra helpers for free. # config.components = [ :label, :input, :hint, :error ] # Default tag used on hints. # config.hint_tag = :span # Default tag used on errors. # config.error_tag = :span # You can wrap all inputs in a pre-defined tag. config.wrapper_tag = :div # How the label text should be generated altogether with the required text. config.label_text = lambda { |label, required| "#{label} #{required}" } # Series of attemps to detect a default label method for collection # config.collection_label_methods = [ :to_label, :name, :title, :to_s ] # Series of attemps to detect a default value method for collection # config.collection_value_methods = [ :id, :to_s ] # Collection of methods to detect if a file type was given. # config.file_methods = [ :file?, :public_filename ] # Default priority for time_zone inputs. # config.time_zone_priority = nil # Default priority for country inputs. # config.country_priority = nil end
Version data entries
25 entries across 13 versions & 1 rubygems