Class: FormProps::Inputs::HiddenField
- Inherits:
-
TextField
- Object
- ActionView::Helpers::Tags::Base
- Base
- TextField
- FormProps::Inputs::HiddenField
show all
- Defined in:
- lib/form_props/inputs/hidden_field.rb
Instance Method Summary
collapse
Methods inherited from Base
#initialize, #json
Instance Method Details
#field_type ⇒ Object
11
12
13
|
# File 'lib/form_props/inputs/hidden_field.rb', line 11
def field_type
"hidden"
end
|
#render ⇒ Object
6
7
8
9
|
# File 'lib/form_props/inputs/hidden_field.rb', line 6
def render
@options[:auto_complete] = "off"
super
end
|