Class: Effective::FormInputs::PhoneField
Constant Summary
collapse
- DEFAULT_TEL_MASK =
'(999) 999-9999? x99999'
- DEFAULT_CELL_MASK =
'(999) 999-9999'
Effective::FormInput::BLANK
Instance Attribute Summary
#name, #options
Instance Method Summary
collapse
#feedback_options, #hint_options, #initialize, #label_options, #to_html, #wrapper_options
Instance Method Details
16
17
18
|
# File 'app/models/effective/form_inputs/phone_field.rb', line 16
def input_group_options
{ input_group: { class: 'input-group' }, prepend: content_tag(:span, icon('phone'), class: 'input-group-text') }
end
|
8
9
10
|
# File 'app/models/effective/form_inputs/phone_field.rb', line 8
def input_html_options
{ class: 'form-control effective_phone', placeholder: '(555) 555-5555' }
end
|
12
13
14
|
# File 'app/models/effective/form_inputs/phone_field.rb', line 12
def input_js_options
{ mask: ((cell? || fax?) ? DEFAULT_CELL_MASK : DEFAULT_TEL_MASK), placeholder: '_' }
end
|