Sha256: 3c79dfdf07387f71b961d217539e2c77a72f1f00fa18f651924b0ee492f4d785

Contents?: true

Size: 1.2 KB

Versions: 29

Compression:

Stored size: 1.2 KB

Contents

module Formtastic
  module Inputs

    # Outputs a simple `<label>` with a HTML5 `<input type="phone">` wrapped in the standard
    # `<li>` wrapper. This is the default input choice for attributes with a name matching
    # `/(phone|fax)/`, but can be applied to any text-like input with `:as => :phone`.
    #
    # @example Full form context and output
    #
    #   <%= semantic_form_for(@user) do |f| %>
    #     <%= f.inputs do %>
    #       <%= f.input :mobile, :as => :phone %>
    #     <% end %>
    #   <% end %>
    #
    #   <form...>
    #     <fieldset>
    #       <ol>
    #         <li class="phone">
    #           <label for="user_mobile">Mobile</label>
    #           <input type="tel" id="user_mobile" name="user[mobile]">
    #         </li>
    #       </ol>
    #     </fieldset>
    #   </form>
    #
    # @see Formtastic::Helpers::InputsHelper#input InputsHelper#input for full documentation of all possible options.
    class PhoneInput 
      include Base
      include Base::Stringish
      include Base::Placeholder
      
      def to_html
        input_wrapping do
          label_html <<
          builder.phone_field(method, input_html_options)
        end
      end
    end
    
  end
end

Version data entries

29 entries across 29 versions & 3 rubygems

Version Path
date_n_time_picker_activeadmin-0.1.2 vendor/bundle/ruby/2.6.0/gems/formtastic-4.0.0/lib/formtastic/inputs/phone_input.rb
date_n_time_picker_activeadmin-0.1.1 vendor/bundle/ruby/2.6.0/gems/formtastic-4.0.0/lib/formtastic/inputs/phone_input.rb
formtastic-4.0.0 lib/formtastic/inputs/phone_input.rb
formtastic-4.0.0.rc1 lib/formtastic/inputs/phone_input.rb
formtastic-3.1.5 lib/formtastic/inputs/phone_input.rb
ish_lib_manager-0.0.1 test/dummy/vendor/bundle/ruby/2.3.0/gems/formtastic-3.1.4/lib/formtastic/inputs/phone_input.rb
formtastic-3.1.4 lib/formtastic/inputs/phone_input.rb
formtastic-3.1.3 lib/formtastic/inputs/phone_input.rb
formtastic-3.1.2 lib/formtastic/inputs/phone_input.rb
formtastic-3.1.1 lib/formtastic/inputs/phone_input.rb
formtastic-3.1.0 lib/formtastic/inputs/phone_input.rb
formtastic-3.1.0.rc2 lib/formtastic/inputs/phone_input.rb
formtastic-3.1.0.rc1 lib/formtastic/inputs/phone_input.rb
formtastic-3.0.0 lib/formtastic/inputs/phone_input.rb
formtastic-3.0.0.rc2 lib/formtastic/inputs/phone_input.rb
formtastic-2.3.1 lib/formtastic/inputs/phone_input.rb
formtastic-2.3.0 lib/formtastic/inputs/phone_input.rb
formtastic-3.0.0.rc lib/formtastic/inputs/phone_input.rb
formtastic-2.3.0.rc4 lib/formtastic/inputs/phone_input.rb
formtastic-2.3.0.rc3 lib/formtastic/inputs/phone_input.rb