Sha256: a535dab0c61e11d7595e6ce43bd8a67be75d859dcf3643fea100eb00358c9ef2
Contents?: true
Size: 1.98 KB
Versions: 16
Compression:
Stored size: 1.98 KB
Contents
<% # formstrap/email # # ==== Required parameters # * +attribute+ - Name of the attribute of the form model # * +form+ - Form object # # ==== Optional parameters # * +append+ - Display as input group with text on the right-hand side # * +collection+ - Values to be suggested while typing. Can be an collection array or a remote URL. # * +float+ - Use floating labels. Defaults to false # * +hint+ - Informative text to assist with data input. HTML markup is allowed. # * +label+ - Text to display inside label tag. Defaults to the attribute name. Set to false if you don"t want to show a label. # * +list+ - Options are passed through options_for_select # * +plaintext+ - Render input as plain text. # * +prepend+ - Display as input group with text on the left-hand side # * +wrapper+ - Hash with all options for the surrounding html tag # # ==== References # https://headmin.dev/docs/forms/email # https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/email # https://apidock.com/rails/ActionView/Helpers/FormHelper/email_field # # ==== Examples # Basic version # <%= form_with do |form| %#> # <%= render "formstrap/email", form: form, attribute: :email_address %#> # <% end %#> email = Formstrap::EmailView.new(local_assigns) %> <%= render "formstrap/wrapper", email.wrapper_options do %> <%= render "formstrap/label", email.label_options if email.prepend_label? %> <%= render "formstrap/input_group", email.input_group_options do %> <%= form.email_field(email.attribute, email.input_options) %> <%= render "formstrap/datalist", email.datalist_options if email.datalist? %> <%= render "formstrap/autocomplete", email.autocomplete_options if email.autocomplete? %> <% end %> <%= render "formstrap/validation", email.validation_options if email.validate? %> <%= render "formstrap/hint", email.hint_options if email.hint? %> <%= render "formstrap/label", email.label_options if email.append_label? %> <% end %>
Version data entries
16 entries across 16 versions & 1 rubygems