Class: SimpleFormWithClientValidation::Inputs::BlockInput

Inherits:
Base
  • Object
show all
Defined in:
lib/simple_form_with_client_validation/inputs/block_input.rb

Instance Attribute Summary

Attributes inherited from Base

#attribute_name, #column, #html_classes, #input_html_classes, #input_html_options, #input_type, #options, #reflection

Instance Method Summary collapse

Methods inherited from Base

disable, enable, #input_options

Methods included from SimpleFormWithClientValidation::I18nCache

#get_i18n_cache, #i18n_cache, #reset_i18n_cache

Methods included from Components::Readonly

#readonly

Methods included from Components::Placeholders

#placeholder, #placeholder_text

Methods included from Components::Pattern

#pattern

Methods included from Components::MinMax

#min_max

Methods included from Components::Minlength

#minlength

Methods included from Components::Maxlength

#maxlength

Methods included from Components::LabelInput

#label_input

Methods included from Components::HTML5

#has_required?, #html5, #html5?

Methods included from Components::Hints

#has_hint?, #hint

Methods included from Components::Errors

#error, #has_errors?

Methods included from Helpers::Validators

#has_validators?

Constructor Details

#initialize(*args, &block) ⇒ BlockInput

Returns a new instance of BlockInput.



4
5
6
7
# File 'lib/simple_form_with_client_validation/inputs/block_input.rb', line 4

def initialize(*args, &block)
  super
  @block = block
end

Instance Method Details

#inputObject



9
10
11
# File 'lib/simple_form_with_client_validation/inputs/block_input.rb', line 9

def input
  template.capture(&@block)
end