Sha256: 221b021be7d8c469b8ea6b0491107664fc8fecbaaba47c6d735353b331a63be6
Contents?: true
Size: 1.16 KB
Versions: 29
Compression:
Stored size: 1.16 KB
Contents
module Formtastic module Inputs # Outputs a simple `<label>` with a `<input type="text">` wrapped in the standard # `<li>` wrapper. This is the default input choice for database columns of the `:string` type, # and is the default choice for all inputs when no other logical input type can be inferred. # You can force any input to be a string input with `:as => :string`. # # @example Full form context and output # # <%= semantic_form_for(@user) do |f| %> # <%= f.inputs do %> # <%= f.input :first_name, :as => :string %> # <% end %> # <% end %> # # <form...> # <fieldset> # <ol> # <li class="string"> # <label for="user_first_name">First name</label> # <input type="text" id="user_first_name" name="user[first_name]"> # </li> # </ol> # </fieldset> # </form> # # @see Formtastic::Helpers::InputsHelper#input InputsHelper#input for full documentation of all possible options. class StringInput include Base include Base::Stringish include Base::Placeholder end end end
Version data entries
29 entries across 29 versions & 3 rubygems