Class: Formtastic::Inputs::SearchInput

Inherits:
Object
  • Object
show all
Includes:
Base, Base::Stringish
Defined in:
lib/formtastic/inputs/search_input.rb

Overview

Outputs a simple <label> with a HTML5 <input type="search"> wrapped in the standard <li> wrapper. This is the default input choice for attributes with a name matching /^search$/, but can be applied to any text-like input with :as => :search.

Examples:

Full form context and output


<%= semantic_form_for(@search, :html => { :method => :get }) do |f| %>
  <%= f.inputs do %>
    <%= f.input :q, :as => :search, :label => false, :input_html => { :name => "q" } %>
  <% end %>
<% end %>

<form...>
  <fieldset>
    <ol>
      <li class="search">
        <input type="search" id="search_q" name="q">
      </li>
    </ol>
  </fieldset>
</form>

See Also:

  • InputsHelper#input for full documetation of all possible options.

Instance Attribute Summary

Attributes included from Base

#builder, #method, #object, #object_name, #options, #template

Instance Method Summary collapse

Methods included from Base::Stringish

#input_html_options, #placeholder_text, #wrapper_html_options

Methods included from Base

#initialize, #warn_and_correct_option!

Methods included from Base::Wrapping

#input_wrapping, #wrapper_dom_id, #wrapper_html_options

Methods included from Base::Labelling

#label_from_options, #label_html, #label_html_options, #label_text, #localized_label, #render_label?, #requirement_text, #requirement_text_or_proc

Methods included from Base::Associations

#association, #association_primary_key, #belongs_to?, #has_many?, #reflection

Methods included from Base::Fileish

#file?

Methods included from Base::Validations

#autofocus?, #column_limit, #limit, #not_required_through_negated_validation!, #not_required_through_negated_validation?, #optional?, #required?, #required_attribute?, #responds_to_global_required?, #validation_integer_only?, #validation_limit, #validation_max, #validation_min, #validation_step, #validations, #validations?, #validator_relevant?

Methods included from Base::Naming

#as, #attributized_method_name, #humanized_method_name, #input_name, #sanitized_method_name, #sanitized_object_name

Methods included from Base::Hints

#hint?, #hint_html, #hint_text, #hint_text_from_options

Methods included from Base::Errors

#error_first_html, #error_html, #error_keys, #error_list_html, #error_none_html, #error_sentence_html, #errors, #errors?

Methods included from Base::Database

#column, #column?

Methods included from Base::Options

#formtastic_options, #input_options

Methods included from Base::Html

#dom_id, #dom_index, #input_html_options

Instance Method Details

#to_htmlObject



31
32
33
34
35
36
# File 'lib/formtastic/inputs/search_input.rb', line 31

def to_html
  input_wrapping do
    label_html <<
    builder.search_field(method, input_html_options)
  end
end