Class: Formtastic::Actions::InputAction
- Inherits:
-
Object
- Object
- Formtastic::Actions::InputAction
- Defined in:
- lib/formtastic/actions/input_action.rb
Overview
TODO:
document i18n keys
TODO:
document i18n translation with :label (?)
Outputs an <input type="submit">
or <input type="reset">
wrapped in the standard <li>
wrapper. This the default for :submit
and :reset
actions, but :as => :button
is also
available as an alternative.
Instance Attribute Summary
Attributes included from Base
#builder, #method, #object, #object_name, #options, #template
Instance Method Summary collapse
Methods included from Buttonish
#extra_button_html_options, #supported_methods
Methods included from Base
#accesskey, #button_html, #button_html_from_options, #default_button_html, #default_wrapper_classes, #default_wrapper_html_options, #default_wrapper_id, #extra_button_html_options, #initialize, #supported_methods, #text, #wrapper, #wrapper_class, #wrapper_classes_from_options, #wrapper_html_options, #wrapper_html_options_from_options, #wrapper_id, #wrapper_id_from_options
Methods included from LocalizedString
Instance Method Details
#to_html ⇒ Object
64 65 66 67 68 |
# File 'lib/formtastic/actions/input_action.rb', line 64 def to_html wrapper do builder.submit(text, ) end end |