Class: Effective::FormInputs::StaticField
Constant Summary
Effective::FormInput::BLANK
Instance Attribute Summary
#name, #options
Instance Method Summary
collapse
#hint_options, #initialize, #input_group_options, #input_js_options, #label_options, #to_html, #wrapper_options
Instance Method Details
13
14
15
16
|
# File 'app/models/effective/form_inputs/static_field.rb', line 13
def build_input(&block)
content = block_given? ? capture(&block) : (options[:input].delete(:value) || value)
content_tag(:p, content, options[:input].except(:readonly, :required, :value).merge(id: tag_id))
end
|
#feedback_options ⇒ Object
9
10
11
|
# File 'app/models/effective/form_inputs/static_field.rb', line 9
def feedback_options
false
end
|
5
6
7
|
# File 'app/models/effective/form_inputs/static_field.rb', line 5
def input_html_options
{ class: 'form-control-plaintext', readonly: false }
end
|