Class: Effective::FormInputs::ErrorField
Constant Summary
Effective::FormInput::BLANK
Instance Attribute Summary
#name, #options
Instance Method Summary
collapse
#feedback_options, #hint_options, #initialize, #input_group_options, #input_js_options, #label_options, #wrapper_options
Instance Method Details
#build_error_content ⇒ Object
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
# File 'app/models/effective/form_inputs/error_field.rb', line 22
def build_error_content
include_name = include_name?
content = (
if name.blank?
object.errors.full_messages.to_sentence
elsif include_name?
object.errors.full_messages_for(name).to_sentence
else
object.errors.messages[name].to_sentence
end
)
content_tag(:div, content, options[:input])
end
|
5
6
7
|
# File 'app/models/effective/form_inputs/error_field.rb', line 5
def input_html_options
{ class: 'alert alert-danger' }
end
|
#to_html(&block) ⇒ Object
9
10
11
12
13
14
15
16
17
18
19
20
|
# File 'app/models/effective/form_inputs/error_field.rb', line 9
def to_html(&block)
return nil unless has_error?(name)
case layout
when :horizontal
build_wrapper do
content_tag(:div, '', class: 'col-sm-2') + content_tag(:div, build_error_content, class: 'col-sm-10')
end
else
content_tag(:div, build_error_content, class: 'form-group')
end
end
|