Class: Pakyow::Presenter::Views::Form

Inherits:
Pakyow::Presenter::View show all
Defined in:
lib/pakyow/presenter/views/form.rb

Constant Summary collapse

INPUT_TAG =
"input"
SELECT_TAG =
"select"
TEXTAREA_TAG =
"textarea"
FIELD_TAGS =
[
  INPUT_TAG,
  SELECT_TAG,
  TEXTAREA_TAG
].freeze
CHECKBOX_TYPE =
"checkbox"
RADIO_TYPE =
"radio"
CHECKED_TYPES =
[
  CHECKBOX_TYPE, RADIO_TYPE
].freeze

Constants inherited from Pakyow::Presenter::View

Pakyow::Presenter::View::INFO_MERGER

Instance Attribute Summary

Attributes inherited from Pakyow::Presenter::View

#logical_path, #object

Method Summary

Methods inherited from Pakyow::Presenter::View

#==, #add_info, #after, #append, #attributes, #attributes=, #before, #bind, #binding?, #binding_name, #binding_prop?, #binding_props, #binding_scope?, #binding_scopes, #body, #channeled_binding_name, #channeled_binding_scope?, #clear, #component, #components, #container?, #each_binding, #each_binding_prop, #each_binding_scope, #find, #find_all, #find_partials, #form, #form?, #forms, from_object, from_view_or_string, #head, #html=, #info, #initialize, #initialize_copy, load, #mixin, #partial?, #plural_binding_name, #plural_channeled_binding_name, #prepend, #remove, #replace, #singular_binding_name, #singular_channeled_binding_name, #soft_copy, #title, #to_html, #to_s, #transform, #version, #with

Constructor Details

This class inherits a constructor from Pakyow::Presenter::View